This is an automated email from the ASF dual-hosted git repository.
showuon 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 3643039a9a4 MINOR: Fix incorrect comment in
TopicDeletionManager.scala. (#14292)
3643039a9a4 is described below
commit 3643039a9a43cbd7c2dfc4927004be7b32264fb4
Author: Tang Yunzi <[email protected]>
AuthorDate: Mon Aug 28 11:13:47 2023 +0800
MINOR: Fix incorrect comment in TopicDeletionManager.scala. (#14292)
Fix incorrect comment in TopicDeletionManager.scala
Reviewers: Luke Chen <[email protected]>
---
core/src/main/scala/kafka/controller/TopicDeletionManager.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/src/main/scala/kafka/controller/TopicDeletionManager.scala
b/core/src/main/scala/kafka/controller/TopicDeletionManager.scala
index 0fd7274d128..a56a701c1ca 100755
--- a/core/src/main/scala/kafka/controller/TopicDeletionManager.scala
+++ b/core/src/main/scala/kafka/controller/TopicDeletionManager.scala
@@ -214,7 +214,7 @@ class TopicDeletionManager(config: KafkaConfig,
* Topic deletion can be retried if -
* 1. Topic deletion is not already complete
* 2. Topic deletion is currently not in progress for that topic
- * 3. Topic is currently marked ineligible for deletion
+ * 3. Topic is currently not marked ineligible for deletion
* @param topic Topic
* @return Whether or not deletion can be retried for the topic
*/