summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2019-02-05 17:33:00 +0300
committerMichael Klishin <michael@clojurewerkz.org>2019-02-05 17:33:00 +0300
commitdd3ee7e40462f4366e6fdeb2ad832d981229c86b (patch)
treeddbd30d34923635af0a72206af96c2cdc6a029bc
parent9b0c0dc5bd5318abb3dd4afc7c7cf015411f3eba (diff)
downloadrabbitmq-server-git-dd3ee7e40462f4366e6fdeb2ad832d981229c86b.tar.gz
Give the recovering node more time to start here
It can take twice as long in CI containers.
-rw-r--r--test/publisher_confirms_parallel_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/publisher_confirms_parallel_SUITE.erl b/test/publisher_confirms_parallel_SUITE.erl
index 0fab34d96d..4d8bf366d7 100644
--- a/test/publisher_confirms_parallel_SUITE.erl
+++ b/test/publisher_confirms_parallel_SUITE.erl
@@ -44,7 +44,7 @@ groups() ->
confirm_mandatory_unroutable,
confirm_unroutable_message],
[
- {publisher_confirm_tests, [],
+ {publisher_confirm_tests, [],
[
{classic_queue, [parallel], PublisherConfirmTests ++ [confirm_nack]},
{mirrored_queue, [parallel], PublisherConfirmTests ++ [confirm_nack]},
@@ -327,7 +327,7 @@ confirm_minority(Config) ->
receive
#'basic.nack'{} -> throw(unexpected_nack);
#'basic.ack'{} -> ok
- after 30000 ->
+ after 60000 ->
throw(missing_ack)
end.