You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2009/07/19 23:50:39 UTC

svn commit: r795641 - /couchdb/trunk/src/couchdb/couch_rep_changes_feed.erl

Author: kocolosk
Date: Sun Jul 19 21:50:39 2009
New Revision: 795641

URL: http://svn.apache.org/viewvc?rev=795641&view=rev
Log:
oops, bug in r795297 (listen for local update notifications)

Modified:
    couchdb/trunk/src/couchdb/couch_rep_changes_feed.erl

Modified: couchdb/trunk/src/couchdb/couch_rep_changes_feed.erl
URL: http://svn.apache.org/viewvc/couchdb/trunk/src/couchdb/couch_rep_changes_feed.erl?rev=795641&r1=795640&r2=795641&view=diff
==============================================================================
--- couchdb/trunk/src/couchdb/couch_rep_changes_feed.erl (original)
+++ couchdb/trunk/src/couchdb/couch_rep_changes_feed.erl Sun Jul 19 21:50:39 2009
@@ -229,7 +229,7 @@
 
 local_update_notification(Self, DbName, {updated, DbName}) ->
     Self ! updated;
-local_update_notification(Self, DbName, {updated, DbName}) ->
+local_update_notification(Self, DbName, {deleted, DbName}) ->
     Self ! deleted;
 local_update_notification(_, _, _) ->
     ok.