diff options
author | Rin Kuryloski <kuryloskip@vmware.com> | 2022-10-25 14:50:59 +0200 |
---|---|---|
committer | Rin Kuryloski <kuryloskip@vmware.com> | 2022-10-25 14:50:59 +0200 |
commit | 673cf8fea79619d80f20b520379cd892574e2fad (patch) | |
tree | 7bdacc33cf30a63b3ee269095a9ec4909278af7a | |
parent | f15e2e42f7a0adba49c325061481b0e29a6b50fd (diff) | |
download | rabbitmq-server-git-rin/reduce-windows-flakes.tar.gz |
Attempt to reduce flakiness of suite in windows actionsrin/reduce-windows-flakes
//deps/rabbitmq_auth_backend_cache:rabbit_auth_cache_SUITE
reduce parallel checks from 1000 to 500
-rw-r--r-- | deps/rabbitmq_auth_backend_cache/test/rabbit_auth_cache_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/rabbitmq_auth_backend_cache/test/rabbit_auth_cache_SUITE.erl b/deps/rabbitmq_auth_backend_cache/test/rabbit_auth_cache_SUITE.erl index 907b1c683b..aa98fe6adf 100644 --- a/deps/rabbitmq_auth_backend_cache/test/rabbit_auth_cache_SUITE.erl +++ b/deps/rabbitmq_auth_backend_cache/test/rabbit_auth_cache_SUITE.erl @@ -155,7 +155,7 @@ get_deleted(Config) -> random_timing(Config) -> - random_timing(Config, 30000, 1000). + random_timing(Config, 30000, 500). random_timing(Config, MaxTTL, Parallel) -> AuthCacheModule = ?config(auth_cache_module, Config), |