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/05/23 14:01:31 UTC

[kafka] branch trunk updated (ec20517 -> 981ef51)

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

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


    from ec20517  KAFKA-6145: Add unit tests for assignments of only stateless tasks (#8713)
     add 981ef51  KAFKA-9931: Implement KIP-605 to expand support for Connect worker internal topic configurations (#8654)

No new revisions were added by this update.

Summary of changes:
 checkstyle/suppressions.xml                        |   2 +-
 .../kafka/clients/admin/MockAdminClient.java       |  32 +++-
 .../runtime/distributed/DistributedConfig.java     |  92 ++++++++--
 .../connect/storage/KafkaConfigBackingStore.java   |  16 +-
 .../connect/storage/KafkaOffsetBackingStore.java   |  16 +-
 .../connect/storage/KafkaStatusBackingStore.java   |  15 +-
 .../org/apache/kafka/connect/util/TopicAdmin.java  |  67 +++++--
 .../integration/InternalTopicsIntegrationTest.java | 176 ++++++++++++++++++
 .../runtime/distributed/DistributedConfigTest.java | 201 +++++++++++++++++++++
 .../storage/KafkaConfigBackingStoreTest.java       |   7 +-
 .../storage/KafkaOffsetBackingStoreTest.java       |   5 +-
 .../apache/kafka/connect/util/TopicAdminTest.java  | 116 +++++++++++-
 .../clusters/EmbeddedConnectClusterAssertions.java | 116 ++++++++++++
 .../util/clusters/EmbeddedKafkaCluster.java        |  88 +++++++++
 14 files changed, 900 insertions(+), 49 deletions(-)
 create mode 100644 connect/runtime/src/test/java/org/apache/kafka/connect/integration/InternalTopicsIntegrationTest.java