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:40:08 UTC

[kafka] branch 2.1 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 2.1
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/2.1 by this push:
     new 1561eaa  KAFKA-7559: Correct standalone system tests to use the correct external file (#5883)
1561eaa is described below

commit 1561eaa0520cee6d976e2ef2bf806176e38e70e2
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"]