You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by fd...@apache.org on 2011/08/29 09:26:04 UTC

svn commit: r1162664 - /couchdb/trunk/src/couchdb/couch_replicator.erl

Author: fdmanana
Date: Mon Aug 29 07:26:04 2011
New Revision: 1162664

URL: http://svn.apache.org/viewvc?rev=1162664&view=rev
Log:
Remove unnecessary replicator gen_server clauses

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

Modified: couchdb/trunk/src/couchdb/couch_replicator.erl
URL: http://svn.apache.org/viewvc/couchdb/trunk/src/couchdb/couch_replicator.erl?rev=1162664&r1=1162663&r2=1162664&view=diff
==============================================================================
--- couchdb/trunk/src/couchdb/couch_replicator.erl (original)
+++ couchdb/trunk/src/couchdb/couch_replicator.erl Mon Aug 29 07:26:04 2011
@@ -368,11 +368,7 @@ handle_call({report_seq_done, Seq, Stats
         highest_seq_done = NewHighestDone,
         source_seq = SourceCurSeq
     },
-    {reply, ok, NewState};
-
-handle_call(Msg, _From, State) ->
-    ?LOG_ERROR("Replicator received an unexpected synchronous call: ~p", [Msg]),
-    {stop, unexpected_sync_message, State}.
+    {reply, ok, NewState}.
 
 
 handle_cast({db_compacted, DbName},
@@ -396,14 +392,7 @@ handle_cast(checkpoint, State) ->
 handle_cast({report_seq, Seq},
     #rep_state{seqs_in_progress = SeqsInProgress} = State) ->
     NewSeqsInProgress = ordsets:add_element(Seq, SeqsInProgress),
-    {noreply, State#rep_state{seqs_in_progress = NewSeqsInProgress}};
-
-handle_cast({add_stats, StatsInc}, #rep_state{stats = Stats} = State) ->
-    {noreply, State#rep_state{stats = sum_stats([Stats, StatsInc])}};
-
-handle_cast(Msg, State) ->
-    ?LOG_ERROR("Replicator received an unexpected asynchronous call: ~p", [Msg]),
-    {stop, unexpected_async_message, State}.
+    {noreply, State#rep_state{seqs_in_progress = NewSeqsInProgress}}.
 
 
 code_change(_OldVsn, State, _Extra) ->