This is an automated email from the ASF dual-hosted git repository.
rhauch pushed a commit to branch 2.2
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/2.2 by this push:
new 77eecb2 MINOR: Increase the timeout in one of Connect's distributed
system tests (#7790)
77eecb2 is described below
commit 77eecb2c874e8db56214065e63fbe84391b74bce
Author: Randall Hauch <[email protected]>
AuthorDate: Fri Dec 6 15:33:05 2019 -0600
MINOR: Increase the timeout in one of Connect's distributed system tests
(#7790)
Author: Randall Hauch <[email protected]>
Reviewers: Nigel Liang <[email protected]>, Roesler <[email protected]>
---
tests/kafkatest/tests/connect/connect_distributed_test.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/kafkatest/tests/connect/connect_distributed_test.py
b/tests/kafkatest/tests/connect/connect_distributed_test.py
index 07cd3ce..ac2472c 100644
--- a/tests/kafkatest/tests/connect/connect_distributed_test.py
+++ b/tests/kafkatest/tests/connect/connect_distributed_test.py
@@ -302,7 +302,7 @@ class ConnectDistributedTest(Test):
# we should still be paused after restarting
for node in self.cc.nodes:
- wait_until(lambda: self.is_paused(self.source, node),
timeout_sec=30,
+ wait_until(lambda: self.is_paused(self.source, node),
timeout_sec=70,
err_msg="Failed to see connector startup in PAUSED
state")
@cluster(num_nodes=5)