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

nicholasjiang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/celeborn.git


The following commit(s) were added to refs/heads/main by this push:
     new 3ebb25874 [MINOR] Fix ReducePartitionMetaHandler logger
3ebb25874 is described below

commit 3ebb25874efa07be977a6063516b231bee2145c6
Author: xxx <[email protected]>
AuthorDate: Tue Sep 9 14:01:48 2025 +0800

    [MINOR] Fix ReducePartitionMetaHandler logger
    
    ### What changes were proposed in this pull request?
    
    Fix `ReducePartitionMetaHandler` logger.
    
    ### Why are the changes needed?
    
    Fix `ReducePartitionMetaHandler` logger.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    CI.
    
    Closes #3465 from xy2953396112/0902_minor.
    
    Authored-by: xxx <[email protected]>
    Signed-off-by: SteNicholas <[email protected]>
---
 .../celeborn/service/deploy/worker/storage/PartitionMetaHandler.scala   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/worker/src/main/scala/org/apache/celeborn/service/deploy/worker/storage/PartitionMetaHandler.scala
 
b/worker/src/main/scala/org/apache/celeborn/service/deploy/worker/storage/PartitionMetaHandler.scala
index 902d720ee..8efa981b8 100644
--- 
a/worker/src/main/scala/org/apache/celeborn/service/deploy/worker/storage/PartitionMetaHandler.scala
+++ 
b/worker/src/main/scala/org/apache/celeborn/service/deploy/worker/storage/PartitionMetaHandler.scala
@@ -333,7 +333,7 @@ class MapPartitionMetaHandler(
 
 class ReducePartitionMetaHandler(val rangeReadFilter: Boolean, val fileInfo: 
FileInfo)
   extends PartitionMetaHandler {
-  val logger: Logger = 
LoggerFactory.getLogger(classOf[MapPartitionMetaHandler])
+  val logger: Logger = 
LoggerFactory.getLogger(classOf[ReducePartitionMetaHandler])
   lazy val mapIdBitMap: Option[RoaringBitmap] =
     if (rangeReadFilter) Some(new RoaringBitmap()) else Option.empty
 

Reply via email to