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 2021/03/24 21:22:55 UTC

[kafka] branch java-library-always-applied updated (1358668 -> b9a4349)

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

ijuma pushed a change to branch java-library-always-applied
in repository https://gitbox.apache.org/repos/asf/kafka.git.


 discard 1358668  Also apply `java-library` in subprojects
 discard 2e1ef21  MINOR: Always apply the java-library plugin
     add 9af8195  KAFKA-12173 Migrate streams:streams-scala module to JUnit 5 (#9858)
     add 11f0ea3  KAFKA-12432: AdminClient should time out nodes that are never ready (#10281)
     add 9bf5c57  KAFKA-12435: Fix javadoc errors (#10392)
     add c766878  MINOR: Always apply the java-library plugin
     add b9a4349  Also apply `java-library` in subprojects

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (1358668)
            \
             N -- N -- N   refs/heads/java-library-always-applied (b9a4349)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 build.gradle                                       |   8 +-
 .../kafka/clients/admin/KafkaAdminClient.java      | 181 +++++++++++++--------
 .../remote/storage/RemoteLogMetadataManager.java   |   2 +-
 .../log/remote/storage/RemoteLogSegmentState.java  |   2 +-
 .../java/org/apache/kafka/clients/MockClient.java  |  10 ++
 .../kafka/clients/admin/KafkaAdminClientTest.java  |  66 ++++++++
 .../kafka/api/PlaintextAdminIntegrationTest.scala  |   1 +
 gradle/dependencies.gradle                         |   1 -
 .../processor/internals/StreamsProducer.java       |   2 +-
 .../integration/AdjustStreamThreadCountTest.java   |  15 +-
 .../EOSUncleanShutdownIntegrationTest.java         |  29 ++--
 .../integration/EmitOnChangeIntegrationTest.java   |  17 +-
 .../integration/EosBetaUpgradeIntegrationTest.java |  16 +-
 .../streams/integration/EosIntegrationTest.java    |  16 +-
 .../FineGrainedAutoResetIntegrationTest.java       |  67 ++++----
 .../GlobalKTableEOSIntegrationTest.java            |  16 +-
 .../integration/GlobalKTableIntegrationTest.java   |  16 +-
 .../integration/GlobalThreadShutDownOrderTest.java |  16 +-
 ...ighAvailabilityTaskAssignorIntegrationTest.java |  16 +-
 .../integration/InternalTopicIntegrationTest.java  |  20 ++-
 .../integration/JoinStoreIntegrationTest.java      |  30 ++--
 .../JoinWithIncompleteMetadataIntegrationTest.java |  29 ++--
 .../KStreamAggregationDedupIntegrationTest.java    |  15 +-
 .../KStreamAggregationIntegrationTest.java         |  15 +-
 .../KStreamRepartitionIntegrationTest.java         |  15 +-
 ...bleForeignKeyInnerJoinMultiIntegrationTest.java |  14 +-
 .../KTableKTableForeignKeyJoinDistributedTest.java |  21 ++-
 .../KTableSourceTopicRestartIntegrationTest.java   |  31 ++--
 .../integration/LagFetchIntegrationTest.java       |  16 +-
 .../integration/MetricsIntegrationTest.java        |  16 +-
 .../OptimizedKTableIntegrationTest.java            |  25 ++-
 .../PurgeRepartitionTopicIntegrationTest.java      |  21 ++-
 .../integration/QueryableStateIntegrationTest.java |  15 +-
 .../integration/RegexSourceIntegrationTest.java    |  41 +++--
 .../streams/integration/ResetIntegrationTest.java  |  15 +-
 .../integration/ResetIntegrationWithSslTest.java   |  15 +-
 .../ResetPartitionTimeIntegrationTest.java         |  15 +-
 .../integration/RestoreIntegrationTest.java        |  15 +-
 .../integration/RocksDBMetricsIntegrationTest.java |  15 +-
 .../SmokeTestDriverIntegrationTest.java            |  15 +-
 .../StandbyTaskCreationIntegrationTest.java        |  20 ++-
 .../integration/StandbyTaskEOSIntegrationTest.java |  16 +-
 .../StateRestorationIntegrationTest.java           |  16 +-
 .../integration/StoreQueryIntegrationTest.java     |   6 +-
 .../integration/StoreUpgradeIntegrationTest.java   |  15 +-
 ...bleJoinTopologyOptimizationIntegrationTest.java |  14 +-
 ...amsUncaughtExceptionHandlerIntegrationTest.java |  15 +-
 .../StreamsUpgradeTestIntegrationTest.java         |  13 +-
 .../SuppressionDurabilityIntegrationTest.java      |  15 +-
 .../integration/SuppressionIntegrationTest.java    |  16 +-
 .../integration/TaskAssignorIntegrationTest.java   |  16 +-
 .../integration/utils/EmbeddedKafkaCluster.java    |  15 +-
 .../streams/integration/utils/KafkaEmbedded.java   |  11 +-
 ...HandlingSourceTopicDeletionIntegrationTest.java |  15 +-
 ...bleJoinScalaIntegrationTestImplicitSerdes.scala |  11 +-
 .../apache/kafka/streams/scala/TopologyTest.scala  |   4 +-
 .../apache/kafka/streams/scala/WordCountTest.scala |  38 +++--
 .../kafka/streams/scala/kstream/ConsumedTest.scala |  47 +++---
 .../kafka/streams/scala/kstream/GroupedTest.scala  |  27 ++-
 .../kafka/streams/scala/kstream/JoinedTest.scala   |  26 +--
 .../streams/scala/kstream/KStreamSplitTest.scala   |  33 ++--
 .../kafka/streams/scala/kstream/KStreamTest.scala  | 140 +++++++++-------
 .../kafka/streams/scala/kstream/KTableTest.scala   | 168 ++++++++++---------
 .../streams/scala/kstream/MaterializedTest.scala   |  59 +++----
 .../kafka/streams/scala/kstream/ProducedTest.scala |  26 +--
 .../streams/scala/kstream/RepartitionedTest.scala  |  57 ++++---
 .../streams/scala/kstream/StreamJoinedTest.scala   |  45 ++---
 .../streams/scala/kstream/SuppressedTest.scala     |  69 ++++----
 ...StreamToTableJoinScalaIntegrationTestBase.scala |  35 ++--
 .../kafka/streams/scala/utils/TestDriver.scala     |   4 +-
 .../apache/kafka/streams/TopologyTestDriver.java   | 174 +++++++++++++++++++-
 .../streams/internals/KeyValueStoreFacade.java     |  99 -----------
 .../kafka/streams/internals/WindowStoreFacade.java | 109 -------------
 .../processor/internals/TestDriverProducer.java    |  44 -----
 .../{internals => }/KeyValueStoreFacadeTest.java   |   4 +-
 .../{internals => }/WindowStoreFacadeTest.java     |   3 +-
 76 files changed, 1403 insertions(+), 933 deletions(-)
 delete mode 100644 streams/test-utils/src/main/java/org/apache/kafka/streams/internals/KeyValueStoreFacade.java
 delete mode 100644 streams/test-utils/src/main/java/org/apache/kafka/streams/internals/WindowStoreFacade.java
 delete mode 100644 streams/test-utils/src/main/java/org/apache/kafka/streams/processor/internals/TestDriverProducer.java
 rename streams/test-utils/src/test/java/org/apache/kafka/streams/{internals => }/KeyValueStoreFacadeTest.java (98%)
 rename streams/test-utils/src/test/java/org/apache/kafka/streams/{internals => }/WindowStoreFacadeTest.java (98%)