diff options
| author | Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> | 2019-09-16 13:23:04 +0200 |
|---|---|---|
| committer | Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> | 2019-09-16 13:23:04 +0200 |
| commit | e433d5e0736e1efb5922e75a55016c995d6aa339 (patch) | |
| tree | dbb0cb3c2c402ffd6fb93baa244d112c6cf6dc98 /test | |
| parent | e60ac4fbe820827ed9e61facabbf3cc710ffb279 (diff) | |
| download | rabbitmq-server-git-e433d5e0736e1efb5922e75a55016c995d6aa339.tar.gz | |
sync_detection_SUITE: Wait for sync for 90 seconds
... instead of 30 seconds. Hopefully this will increase the chance that
eager_sync_SUITE passes.
Diffstat (limited to 'test')
| -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 8b9115880d..bb9df1378f 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 = 30000 / ?LOOP_RECURSION_DELAY, + Max = 90000 / ?LOOP_RECURSION_DELAY, wait_for_sync_status(0, Max, Status, Node, Queue). wait_for_sync_status(N, Max, Status, Node, Queue) when N >= Max -> |
