summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkjnilsson <knilsson@pivotal.io>2020-09-21 12:49:53 +0100
committerkjnilsson <knilsson@pivotal.io>2020-09-21 12:49:53 +0100
commit3038f6e6eb3a3393420bad857582f0208caffa78 (patch)
treea3dcd9c324c481d8c3cdfa3f70103953f85c20dd
parent51f81f28daccb6d7ace2cf1aae4f04bbe1479cd5 (diff)
downloadrabbitmq-server-git-3038f6e6eb3a3393420bad857582f0208caffa78.tar.gz
quorum_queue_SUITE set lower aten poll interval
-rw-r--r--test/quorum_queue_SUITE.erl4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/quorum_queue_SUITE.erl b/test/quorum_queue_SUITE.erl
index e8fffd88e0..cc9a8e154c 100644
--- a/test/quorum_queue_SUITE.erl
+++ b/test/quorum_queue_SUITE.erl
@@ -145,8 +145,10 @@ memory_tests() ->
init_per_suite(Config0) ->
rabbit_ct_helpers:log_environment(),
- Config = rabbit_ct_helpers:merge_app_env(
+ Config1 = rabbit_ct_helpers:merge_app_env(
Config0, {rabbit, [{quorum_tick_interval, 1000}]}),
+ Config = rabbit_ct_helpers:merge_app_env(
+ Config1, {aten, [{poll_interval, 1000}]}),
rabbit_ct_helpers:run_setup_steps(
Config,
[fun rabbit_ct_broker_helpers:configure_dist_proxy/1]).