summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipe David Borba Manana <fdmanana@apache.org>2010-11-28 12:44:57 +0000
committerFilipe David Borba Manana <fdmanana@apache.org>2010-11-28 12:44:57 +0000
commit0674772975ee1748712837a615e795f2aa3372c0 (patch)
treefdba21f1a3ee488722fa5ad96695ac6c0920d4bb
parent5c854c01482a151accb2cd0235187741ac9056fe (diff)
Merged revision 1039872 from trunk:
Replicator DB listener: removed function clause not needed anymore. git-svn-id: https://svn.apache.org/repos/asf/couchdb/branches/1.1.x@1039873 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--src/couchdb/couch_rep_db_listener.erl3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/couchdb/couch_rep_db_listener.erl b/src/couchdb/couch_rep_db_listener.erl
index 6e9e6354..6f1f0443 100644
--- a/src/couchdb/couch_rep_db_listener.erl
+++ b/src/couchdb/couch_rep_db_listener.erl
@@ -79,9 +79,6 @@ handle_cast(Msg, State) ->
?LOG_ERROR("Replicator DB listener received unexpected cast ~p", [Msg]),
{stop, {error, {unexpected_cast, Msg}}, State}.
-handle_info({'EXIT', _OldChangesLoop, rep_db_changed}, State) ->
- {noreply, State};
-
handle_info({'EXIT', From, normal}, #state{changes_feed_loop = From} = State) ->
% replicator DB deleted
couch_work_queue:queue(State#state.changes_queue, stop_all_replications),