This is an automated email from the ASF dual-hosted git repository. av pushed a commit to branch ignite-ducktape in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/ignite-ducktape by this push: new 1546a76 IGNITE-13778: fix startup_timeout_sec on discovery_test.py (#8519) 1546a76 is described below commit 1546a76a3e79a9bf9d359a0cd046d9e4b818db03 Author: Sergei Ryzhov <s.vi.ryz...@gmail.com> AuthorDate: Tue Dec 1 11:09:25 2020 +0300 IGNITE-13778: fix startup_timeout_sec on discovery_test.py (#8519) --- modules/ducktests/tests/ignitetest/tests/discovery_test.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/ducktests/tests/ignitetest/tests/discovery_test.py b/modules/ducktests/tests/ignitetest/tests/discovery_test.py index 1058830..b5fb66c 100644 --- a/modules/ducktests/tests/ignitetest/tests/discovery_test.py +++ b/modules/ducktests/tests/ignitetest/tests/discovery_test.py @@ -290,10 +290,11 @@ def start_servers(test_context, num_nodes, ignite_config, modules=None): """ servers = IgniteService(test_context, config=ignite_config, num_nodes=num_nodes, modules=modules, # mute spam in log. - jvm_opts=["-DIGNITE_DUMP_THREADS_ON_FAILURE=false"]) + jvm_opts=["-DIGNITE_DUMP_THREADS_ON_FAILURE=false"], + startup_timeout_sec=100) start = monotonic() - servers.start(timeout_sec=100) + servers.start() return servers, round(monotonic() - start, 1)