Skip to content

Commit a82b85e

Browse files
committed
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.
1 parent c07b7ca commit a82b85e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/sync_detection_SUITE.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ slave_pids(Node, Queue) ->
213213
%% The mnesia synchronization takes a while, but we don't want to wait for the
214214
%% test to fail, since the timetrap is quite high.
215215
wait_for_sync_status(Status, Node, Queue) ->
216-
Max = 10000 / ?LOOP_RECURSION_DELAY,
216+
Max = 30000 / ?LOOP_RECURSION_DELAY,
217217
wait_for_sync_status(0, Max, Status, Node, Queue).
218218

219219
wait_for_sync_status(N, Max, Status, Node, Queue) when N >= Max ->

0 commit comments

Comments
 (0)