summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipe David Manana <fdmanana@apache.org>2011-10-05 10:03:41 +0100
committerFilipe David Manana <fdmanana@apache.org>2011-10-05 10:03:41 +0100
commit6f9ab6c1b460dc05b0220f0ae0996a0ae7e1c6ff (patch)
treec9106a8b7946a7f30ed82f7fc1be31f6d9be1020
parent0c7fbd3dab5bf13215def4349dbba7f689a22ac6 (diff)
downloadcouchdb-6f9ab6c1b460dc05b0220f0ae0996a0ae7e1c6ff.tar.gz
Increase test 240-replication-compact pause period
The small period of 50ms was causing the test to fail on slower machines, as the source the database compaction didn't finish within 30 seconds.
-rwxr-xr-xtest/etap/240-replication-compact.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/etap/240-replication-compact.t b/test/etap/240-replication-compact.t
index b71c44038..c8b265ec8 100755
--- a/test/etap/240-replication-compact.t
+++ b/test/etap/240-replication-compact.t
@@ -411,7 +411,7 @@ writer_loop(#db{name = DbName}, Parent, Counter) ->
{stop, Ref} ->
Parent ! {stopped, Ref, Counter + 1}
after 0 ->
- ok = timer:sleep(50),
+ ok = timer:sleep(500),
writer_loop(Db, Parent, Counter + 1)
end.