diff options
author | Philip Kuryloski <pkuryloski@pivotal.io> | 2020-09-03 10:31:18 +0200 |
---|---|---|
committer | Philip Kuryloski <pkuryloski@pivotal.io> | 2020-09-03 11:01:46 +0200 |
commit | 9ff1d6fa91209991f074d8295049979d6e3defdb (patch) | |
tree | e0b2214ca2dbece63e78e6fc365699207deef1cd | |
parent | a89433a4ed6a6d039ddcab5001de1355a457c71c (diff) | |
download | rabbitmq-server-git-feature-flags-suite-1.tar.gz |
Adjust sleep intervals in at attempt to address ci flakesfeature-flags-suite-1
-rw-r--r-- | test/feature_flags_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/feature_flags_SUITE.erl b/test/feature_flags_SUITE.erl index 29dfcf068b..6abbeb74ef 100644 --- a/test/feature_flags_SUITE.erl +++ b/test/feature_flags_SUITE.erl @@ -686,7 +686,7 @@ mark_feature_flag_as_enabled_with_a_network_partition(Config) -> RepairFun = fun() -> %% Wait a few seconds before we repair the network. - timer:sleep(5000), + timer:sleep(3000), %% Repair the network and try again to enable %% the feature flag. @@ -704,7 +704,7 @@ mark_feature_flag_as_enabled_with_a_network_partition(Config) -> rabbit_ct_broker_helpers:rpc( Config, B, rabbit_feature_flags, mark_as_enabled_remotely, - [RemoteNodes, FeatureName, true, 120000])). + [RemoteNodes, FeatureName, true, 60000])). %% FIXME: Finish the testcase above ^ |