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

JingsongLi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new ae249ece1b [core] Fix misleading shutdown-hook comment in 
FileChannelManagerImpl (#8761)
ae249ece1b is described below

commit ae249ece1be39c388dc2d2ab3ac0253c6fe07f47
Author: Eunbin Son <[email protected]>
AuthorDate: Tue Jul 21 14:18:23 2026 +0900

    [core] Fix misleading shutdown-hook comment in FileChannelManagerImpl 
(#8761)
---
 .../src/main/java/org/apache/paimon/disk/FileChannelManagerImpl.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/paimon-core/src/main/java/org/apache/paimon/disk/FileChannelManagerImpl.java 
b/paimon-core/src/main/java/org/apache/paimon/disk/FileChannelManagerImpl.java
index ba863fe2db..31e35970c9 100644
--- 
a/paimon-core/src/main/java/org/apache/paimon/disk/FileChannelManagerImpl.java
+++ 
b/paimon-core/src/main/java/org/apache/paimon/disk/FileChannelManagerImpl.java
@@ -59,8 +59,8 @@ public class FileChannelManagerImpl implements 
FileChannelManager {
 
         this.random = new Random();
 
-        // Creates directories after registering shutdown hook to ensure the 
directories can be
-        // removed if required.
+        // Directories are created eagerly here and removed when this manager 
is closed (see
+        // close()).
         this.paths = createFiles(tempDirs, prefix);
 
         LOG.info(

Reply via email to