diff options
| author | Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> | 2017-07-05 09:49:45 +0200 |
|---|---|---|
| committer | Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> | 2017-07-05 09:51:06 +0200 |
| commit | a82b85e7dfefd07e22f3185df89aa26b85031edc (patch) | |
| tree | 245c499e8003dd39c880f79da9e44fdf63dcee04 | |
| parent | c07b7cacc326cbec273b04d0d3eb1a351223d73a (diff) | |
| download | rabbitmq-server-git-a82b85e7dfefd07e22f3185df89aa26b85031edc.tar.gz | |
sync_detection_SUITE: Wait for sync status for 30 seconds
... instead of the previous 10 seconds. This helps eager_sync_SUITE
which times out quite often with Erlang 20.
| -rw-r--r-- | test/sync_detection_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sync_detection_SUITE.erl b/test/sync_detection_SUITE.erl index f62cb846da..c606e050dd 100644 --- a/test/sync_detection_SUITE.erl +++ b/test/sync_detection_SUITE.erl @@ -213,7 +213,7 @@ slave_pids(Node, Queue) -> %% The mnesia synchronization takes a while, but we don't want to wait for the %% test to fail, since the timetrap is quite high. wait_for_sync_status(Status, Node, Queue) -> - Max = 10000 / ?LOOP_RECURSION_DELAY, + Max = 30000 / ?LOOP_RECURSION_DELAY, wait_for_sync_status(0, Max, Status, Node, Queue). wait_for_sync_status(N, Max, Status, Node, Queue) when N >= Max -> |
