You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by rs...@apache.org on 2018/09/17 18:13:05 UTC

[kafka] branch trunk updated: MINOR: Increase timeout in log4j system test to avoid transient failures (#5658)

This is an automated email from the ASF dual-hosted git repository.

rsivaram pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 5e72f66  MINOR: Increase timeout in log4j system test to avoid transient failures (#5658)
5e72f66 is described below

commit 5e72f66ab5c6220098ebbd20957a05a1ed657ab7
Author: Rajini Sivaram <ra...@googlemail.com>
AuthorDate: Mon Sep 17 19:12:46 2018 +0100

    MINOR: Increase timeout in log4j system test to avoid transient failures (#5658)
    
    Reviewers: Ismael Juma <is...@juma.me.uk>
---
 tests/kafkatest/tests/tools/log4j_appender_test.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/kafkatest/tests/tools/log4j_appender_test.py b/tests/kafkatest/tests/tools/log4j_appender_test.py
index cbf14f3..6c268da 100644
--- a/tests/kafkatest/tests/tools/log4j_appender_test.py
+++ b/tests/kafkatest/tests/tools/log4j_appender_test.py
@@ -66,7 +66,7 @@ class Log4jAppenderTest(Test):
 
     def start_consumer(self):
         self.consumer = ConsoleConsumer(self.test_context, num_nodes=self.num_brokers, kafka=self.kafka, topic=TOPIC,
-                                        consumer_timeout_ms=1000,
+                                        consumer_timeout_ms=10000,
                                         message_validator=self.custom_message_validator)
         self.consumer.start()