This is an automated email from the ASF dual-hosted git repository.
zhouky pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-celeborn.git
The following commit(s) were added to refs/heads/main by this push:
new fe3740589 [CELEBORN-712][FOLLOWUP] Fix Utils.makeReducerKey
fe3740589 is described below
commit fe37405899902f9f4de91b5337834b185ae17c80
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]>
---
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 = {