From commits-return-15009-apmail-kafka-commits-archive=kafka.apache.org@kafka.apache.org Fri Jul 3 17:44:25 2020 Return-Path: X-Original-To: apmail-kafka-commits-archive@www.apache.org Delivered-To: apmail-kafka-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by minotaur.apache.org (Postfix) with SMTP id E56B919E95 for ; Fri, 3 Jul 2020 17:44:22 +0000 (UTC) Received: (qmail 94679 invoked by uid 500); 3 Jul 2020 17:44:22 -0000 Delivered-To: apmail-kafka-commits-archive@kafka.apache.org Received: (qmail 94651 invoked by uid 500); 3 Jul 2020 17:44:22 -0000 Mailing-List: contact commits-help@kafka.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kafka.apache.org Delivered-To: mailing list commits@kafka.apache.org Received: (qmail 94642 invoked by uid 99); 3 Jul 2020 17:44:22 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Jul 2020 17:44:22 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 9FBEB890B8; Fri, 3 Jul 2020 17:44:21 +0000 (UTC) Date: Fri, 03 Jul 2020 17:44:17 +0000 To: "commits@kafka.apache.org" Subject: [kafka] branch 2.6 updated: KAFKA-10209: Fix connect_rest_test.py after the introduction of new connector configs (#8944) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <159379825449.14083.4768817873079041440@gitbox.apache.org> From: kkarantasis@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: kafka X-Git-Refname: refs/heads/2.6 X-Git-Reftype: branch X-Git-Oldrev: 222f7337f7c28667b2bd786e45789066d111690d X-Git-Newrev: 45a0d713e02af37be50730efd4503fe7f5b49c6c X-Git-Rev: 45a0d713e02af37be50730efd4503fe7f5b49c6c X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. kkarantasis pushed a commit to branch 2.6 in repository https://gitbox.apache.org/repos/asf/kafka.git The following commit(s) were added to refs/heads/2.6 by this push: new 45a0d71 KAFKA-10209: Fix connect_rest_test.py after the introduction of new connector configs (#8944) 45a0d71 is described below commit 45a0d713e02af37be50730efd4503fe7f5b49c6c Author: Chia-Ping Tsai AuthorDate: Sat Jul 4 01:38:42 2020 +0800 KAFKA-10209: Fix connect_rest_test.py after the introduction of new connector configs (#8944) There are two new configs introduced by 371f14c3c12d2e341ac96bd52393b43a10acfa84 and 1c4eb1a5757df611735cfac9b709e0d80d0da4b3 so we have to update the expected configs in the connect_rest_test.py system test too. Reviewer: Konstantine Karantasis --- tests/kafkatest/tests/connect/connect_rest_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/kafkatest/tests/connect/connect_rest_test.py b/tests/kafkatest/tests/connect/connect_rest_test.py index 836b4a7..4d978a2 100644 --- a/tests/kafkatest/tests/connect/connect_rest_test.py +++ b/tests/kafkatest/tests/connect/connect_rest_test.py @@ -34,11 +34,11 @@ class ConnectRestApiTest(KafkaTest): FILE_SOURCE_CONFIGS = {'name', 'connector.class', 'tasks.max', 'key.converter', 'value.converter', 'header.converter', 'batch.size', 'topic', 'file', 'transforms', 'config.action.reload', 'errors.retry.timeout', 'errors.retry.delay.max.ms', - 'errors.tolerance', 'errors.log.enable', 'errors.log.include.messages'} + 'errors.tolerance', 'errors.log.enable', 'errors.log.include.messages', 'predicates', 'topic.creation.groups'} FILE_SINK_CONFIGS = {'name', 'connector.class', 'tasks.max', 'key.converter', 'value.converter', 'header.converter', 'topics', 'file', 'transforms', 'topics.regex', 'config.action.reload', 'errors.retry.timeout', 'errors.retry.delay.max.ms', 'errors.tolerance', 'errors.log.enable', 'errors.log.include.messages', 'errors.deadletterqueue.topic.name', - 'errors.deadletterqueue.topic.replication.factor', 'errors.deadletterqueue.context.headers.enable'} + 'errors.deadletterqueue.topic.replication.factor', 'errors.deadletterqueue.context.headers.enable', 'predicates'} INPUT_FILE = "/mnt/connect.input" INPUT_FILE2 = "/mnt/connect.input2"