You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by rh...@apache.org on 2020/02/05 15:51:29 UTC

[kafka] branch 2.2 updated: KAFKA-7489: Backport removal of 0.9 compatibility checks from ConnectDistributedTest (#8035)

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 6462c2a  KAFKA-7489: Backport removal of 0.9 compatibility checks from ConnectDistributedTest (#8035)
6462c2a is described below

commit 6462c2a7feabb6cc1251e303606ef30d35846706
Author: Greg Harris <gr...@confluent.io>
AuthorDate: Wed Feb 5 07:47:29 2020 -0800

    KAFKA-7489: Backport removal of 0.9 compatibility checks from ConnectDistributedTest (#8035)
    
    (#7023) exposed an incompatibility between Kafka <=0.9 and Connect >0.9,
    in which the broker does not recognize a request for ApiVersions.
    For trunk and 2.4, this test case was removed rather than the issue addressed.
    This effectively backports the other half of (#7023) which was left out of (#7791).
    
    Signed-off-by: Greg Harris <gr...@confluent.io>
    
    Author: Greg Harris <gr...@confluent.io>
    Reviewers: Randall Hauch <rh...@gmail.com>, Andrew Choi <an...@linkedin.com>
---
 tests/kafkatest/tests/connect/connect_distributed_test.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tests/kafkatest/tests/connect/connect_distributed_test.py b/tests/kafkatest/tests/connect/connect_distributed_test.py
index ac2472c..6b5494d 100644
--- a/tests/kafkatest/tests/connect/connect_distributed_test.py
+++ b/tests/kafkatest/tests/connect/connect_distributed_test.py
@@ -509,7 +509,6 @@ class ConnectDistributedTest(Test):
     @parametrize(broker_version=str(LATEST_0_10_2), auto_create_topics=False, security_protocol=SecurityConfig.PLAINTEXT)
     @parametrize(broker_version=str(LATEST_0_10_1), auto_create_topics=False, security_protocol=SecurityConfig.PLAINTEXT)
     @parametrize(broker_version=str(LATEST_0_10_0), auto_create_topics=True, security_protocol=SecurityConfig.PLAINTEXT)
-    @parametrize(broker_version=str(LATEST_0_9), auto_create_topics=True, security_protocol=SecurityConfig.PLAINTEXT)
     def test_broker_compatibility(self, broker_version, auto_create_topics, security_protocol):
         """
         Verify that Connect will start up with various broker versions with various configurations.