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

zhouky pushed a commit to branch branch-0.3
in repository https://gitbox.apache.org/repos/asf/incubator-celeborn.git


The following commit(s) were added to refs/heads/branch-0.3 by this push:
     new ab21a2d6e [CELEBORN-712][FOLLOWUP] Fix Utils.makeReducerKey
ab21a2d6e is described below

commit ab21a2d6ee479362a7d2985cd11286acf3ad3e1d
Author: zky.zhoukeyong <[email protected]>
AuthorDate: Fri Aug 4 20:40:14 2023 +0800

    [CELEBORN-712][FOLLOWUP] Fix Utils.makeReducerKey
    
    ### What changes were proposed in this pull request?
    As title.
    
    ### Why are the changes needed?
    
    ### Does this PR introduce _any_ user-facing change?
    No.
    
    ### How was this patch tested?
    Passes GA
    
    Closes #1792 from waitinfuture/712-fu.
    
    Authored-by: zky.zhoukeyong <[email protected]>
    Signed-off-by: zky.zhoukeyong <[email protected]>
    (cherry picked from commit fe37405899902f9f4de91b5337834b185ae17c80)
    Signed-off-by: zky.zhoukeyong <[email protected]>
---
 common/src/main/scala/org/apache/celeborn/common/util/Utils.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/src/main/scala/org/apache/celeborn/common/util/Utils.scala 
b/common/src/main/scala/org/apache/celeborn/common/util/Utils.scala
index c6a072ddf..4b5cfa05a 100644
--- a/common/src/main/scala/org/apache/celeborn/common/util/Utils.scala
+++ b/common/src/main/scala/org/apache/celeborn/common/util/Utils.scala
@@ -613,7 +613,7 @@ object Utils extends Logging {
   }
 
   def makeReducerKey(shuffleId: Int, partitionId: Int): String = {
-    s"shuffleId-$partitionId"
+    s"$shuffleId-$partitionId"
   }
 
   def makeMapKey(applicationId: String, shuffleId: Int, mapId: Int, attemptId: 
Int): String = {

Reply via email to