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

divijv 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 c2bb8eb875d MINOR: Close topic based RLMM correctly in integration 
tests (#14315)
c2bb8eb875d is described below

commit c2bb8eb875d94568d1ad19bf207ec69c182405d4
Author: Luke Chen <[email protected]>
AuthorDate: Thu Aug 31 16:44:32 2023 +0800

    MINOR: Close topic based RLMM correctly in integration tests (#14315)
    
    Reviewers: Divij Vaidya <[email protected]>
---
 .../log/remote/metadata/storage/RemoteLogSegmentLifecycleTest.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/storage/src/test/java/org/apache/kafka/server/log/remote/metadata/storage/RemoteLogSegmentLifecycleTest.java
 
b/storage/src/test/java/org/apache/kafka/server/log/remote/metadata/storage/RemoteLogSegmentLifecycleTest.java
index 6928c6e281f..95fbed72b17 100644
--- 
a/storage/src/test/java/org/apache/kafka/server/log/remote/metadata/storage/RemoteLogSegmentLifecycleTest.java
+++ 
b/storage/src/test/java/org/apache/kafka/server/log/remote/metadata/storage/RemoteLogSegmentLifecycleTest.java
@@ -482,7 +482,7 @@ public class RemoteLogSegmentLifecycleTest {
 
         @Override
         public void close() throws IOException {
-            tearDown();
+            super.close();
         }
 
     }

Reply via email to