This is an automated email from the ASF dual-hosted git repository.
chia7712 pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new 590a68b1f86 MINOR: Fix typo 'propogation' to 'propagation' in
TopicCommandTest (#21542)
590a68b1f86 is described below
commit 590a68b1f86923f35d1dce56e1701e06b1381a4e
Author: 조형준 <[email protected]>
AuthorDate: Wed Feb 25 15:37:38 2026 +0900
MINOR: Fix typo 'propogation' to 'propagation' in TopicCommandTest (#21542)
Fix typos in TopicCommandTest:
- `propogation` -> `propagation`
- `Meta data` -> `Metadata` for consistency with the rest of the
codebase
Reviewers: Chia-Ping Tsai <[email protected]>
---
tools/src/test/java/org/apache/kafka/tools/TopicCommandTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/src/test/java/org/apache/kafka/tools/TopicCommandTest.java
b/tools/src/test/java/org/apache/kafka/tools/TopicCommandTest.java
index a1dbffcab1d..6d792fbd41c 100644
--- a/tools/src/test/java/org/apache/kafka/tools/TopicCommandTest.java
+++ b/tools/src/test/java/org/apache/kafka/tools/TopicCommandTest.java
@@ -1115,7 +1115,7 @@ public class TopicCommandTest {
broker.metadataCache().getLeaderAndIsr(testTopicName, 0).orElseGet(null));
return partitionState.map(s ->
FetchRequest.isValidBrokerId(s.leader())).orElse(false);
}
- ), CLUSTER_WAIT_MS, String.format("Meta data propogation
fail in %s ms", CLUSTER_WAIT_MS));
+ ), CLUSTER_WAIT_MS, String.format("Metadata propagation
fail in %s ms", CLUSTER_WAIT_MS));
String output = captureDescribeTopicStandardOut(clusterInstance,
buildTopicCommandOptionsWithBootstrap(clusterInstance, "--describe",
"--under-replicated-partitions"));
String[] rows = output.split(System.lineSeparator());