Skip to content
This repository has been archived by the owner on Sep 19, 2019. It is now read-only.

Commit

Permalink
Merge remote branch 'origin/stuck-continuous-replications' into 1.6.x
Browse files Browse the repository at this point in the history
  • Loading branch information
kocolosk committed Oct 18, 2011
2 parents ab2fec0 + a2da4ef commit 4650591
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fabric_view_changes.erl
Expand Up @@ -130,9 +130,9 @@ send_changes(DbName, ChangesArgs, Callback, PackedSeqs, AccIn, Timeout) ->
receive_results(Workers, State, Timeout, Callback, AccIn) ->
case rexi_utils:recv(Workers, #shard.ref, fun handle_message/3, State,
infinity, Timeout) of
{timeout, _NewState} ->
{timeout, NewState0} ->
{ok, AccOut} = Callback(timeout, AccIn),
NewState = State#collector{user_acc = AccOut},
NewState = NewState0#collector{user_acc = AccOut},
receive_results(Workers, NewState, Timeout, Callback, AccOut);
{_, NewState} ->
{ok, NewState}
Expand Down

0 comments on commit 4650591

Please sign in to comment.