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

payang 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 fe02a746ce3 MINOR: Remove unintentional console output in 
MetadataCacheTest (#21204)
fe02a746ce3 is described below

commit fe02a746ce3b2c0877e6864259c1d639a07f57fa
Author: Sanskar Jhajharia <[email protected]>
AuthorDate: Mon Dec 22 20:29:52 2025 +0530

    MINOR: Remove unintentional console output in MetadataCacheTest (#21204)
    
    The commit
    
    
(https://github.com/apache/kafka/commit/7d13e8b70d1c7a9fc5092bb8c2653fec7f7beb29)
    seems to have added an un-necessary debug line.
    
    Reviewers: PoAn Yang <[email protected]>, Chia-Ping Tsai
    <[email protected]>, TengYao Chi <[email protected]>, Lan Ding
    <[email protected]>, Ken Huang <[email protected]>
---
 core/src/test/scala/unit/kafka/server/MetadataCacheTest.scala | 1 -
 1 file changed, 1 deletion(-)

diff --git a/core/src/test/scala/unit/kafka/server/MetadataCacheTest.scala 
b/core/src/test/scala/unit/kafka/server/MetadataCacheTest.scala
index 801eb08735c..be49706792f 100644
--- a/core/src/test/scala/unit/kafka/server/MetadataCacheTest.scala
+++ b/core/src/test/scala/unit/kafka/server/MetadataCacheTest.scala
@@ -814,7 +814,6 @@ class MetadataCacheTest {
     checkTopicMetadata(topic0, Set(1, 2), resultTopic.partitions().asScala)
 
     // With start index and quota reached
-    System.out.println("here")
     response = metadataCache.describeTopicResponse(util.List.of(topic0, 
topic1).iterator, listenerName, t => if (t.equals(topic0)) 2 else 0, 1, false)
     result = response.topics().asScala.toList
     assertEquals(1, result.size)

Reply via email to