You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ij...@apache.org on 2018/11/06 06:39:23 UTC

[kafka] branch trunk updated: KAFKA-7559: Correct standalone system tests to use the correct external file (#5883)

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

ijuma 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 f856082  KAFKA-7559: Correct standalone system tests to use the correct external file (#5883)
f856082 is described below

commit f856082cb8370941a8dc1efc9a383c6167db12ad
Author: Randall Hauch <rh...@gmail.com>
AuthorDate: Tue Nov 6 00:39:12 2018 -0600

    KAFKA-7559: Correct standalone system tests to use the correct external file (#5883)
    
    This fixes the Connect standalone system tests. See branch builder: https://jenkins.confluent.io/job/system-test-kafka-branch-builder/2021/
    
    This should be backported to the 2.0 branch, since that's when the tests were first
    modified to use the external property file.
    
    Reviewers: Magesh Nandakumar <ma...@gmail.com>, Ismael Juma <is...@juma.me.uk>
---
 tests/kafkatest/tests/connect/connect_test.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/kafkatest/tests/connect/connect_test.py b/tests/kafkatest/tests/connect/connect_test.py
index 2d8ac2d..f01ff0a 100644
--- a/tests/kafkatest/tests/connect/connect_test.py
+++ b/tests/kafkatest/tests/connect/connect_test.py
@@ -47,7 +47,7 @@ class ConnectStandaloneFileTest(Test):
 
     OFFSETS_FILE = "/mnt/connect.offsets"
 
-    TOPIC = "${file:/mnt/connect/connect-file-external.properties:topic.external}"
+    TOPIC = "${file:/mnt/connect/connect-external-configs.properties:topic.external}"
     TOPIC_TEST = "test"
 
     FIRST_INPUT_LIST = ["foo", "bar", "baz"]