You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2014/08/28 14:16:07 UTC

[36/37] couch-replicator commit: updated refs/heads/master to aafb5f9

Adjust the restart window

The test suite was causing the couch_replicator application to exit due
to couch_replicator_manager restaring frequently with the tests changing
the replicator_db. This just increases our tolerance to the frequency of
those restarts.


Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch-replicator/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch-replicator/commit/a85e9b89
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch-replicator/tree/a85e9b89
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch-replicator/diff/a85e9b89

Branch: refs/heads/master
Commit: a85e9b89b6482712565188b55e968bb573dd8dc7
Parents: 7ff3a52
Author: Paul J. Davis <pa...@gmail.com>
Authored: Tue Aug 12 18:42:10 2014 -0500
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Tue Aug 12 18:42:10 2014 -0500

----------------------------------------------------------------------
 src/couch_replicator_sup.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch-replicator/blob/a85e9b89/src/couch_replicator_sup.erl
----------------------------------------------------------------------
diff --git a/src/couch_replicator_sup.erl b/src/couch_replicator_sup.erl
index bfbc207..57ad63b 100644
--- a/src/couch_replicator_sup.erl
+++ b/src/couch_replicator_sup.erl
@@ -39,5 +39,5 @@ init(_Args) ->
             supervisor,
             [couch_replicator_job_sup]}
     ],
-    {ok, {{one_for_one,10,3600}, Children}}.
+    {ok, {{one_for_one,10,1}, Children}}.