ivandasch commented on a change in pull request #8211:
URL: https://github.com/apache/ignite/pull/8211#discussion_r499414996
##########
File path: modules/ducktests/tests/ignitetest/tests/discovery_test.py
##########
@@ -71,40 +72,65 @@ class DiscoveryTest(IgniteTest):
"""
NUM_NODES = 7
- FAILURE_DETECTION_TIMEOUT = 2000
+ FAILURE_DETECTION_TIMEOUT_TCP = 1000
+
+ FAILURE_DETECTION_TIMEOUT_ZK = 3000
DATA_AMOUNT = 5_000_000
WARMUP_DATA_AMOUNT = 10_000
+ NETFILTER_SAVED_SETTINGS = os.path.join(IgniteTest.TEMP_PATH_ROOT,
"discovery_test", "netfilter.bak")
Review comment:
This will not work in parallel execution (class variable), use
`tempfile` module and instance variable
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]