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

kerwinzhang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git


The following commit(s) were added to refs/heads/main by this push:
     new 9d2fcdeaa [CELEBORN] Fix potential ClassNotFoundException (#6217)
9d2fcdeaa is described below

commit 9d2fcdeaaa2631bb50eedf214d6684f9aa2252ce
Author: Kerwin Zhang <[email protected]>
AuthorDate: Wed Jun 26 11:20:19 2024 +0800

    [CELEBORN] Fix potential ClassNotFoundException (#6217)
---
 .../java/org/apache/spark/shuffle/gluten/celeborn/CelebornUtils.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/gluten-celeborn/common/src/main/java/org/apache/spark/shuffle/gluten/celeborn/CelebornUtils.java
 
b/gluten-celeborn/common/src/main/java/org/apache/spark/shuffle/gluten/celeborn/CelebornUtils.java
index 4593d019c..9dd4e1d11 100644
--- 
a/gluten-celeborn/common/src/main/java/org/apache/spark/shuffle/gluten/celeborn/CelebornUtils.java
+++ 
b/gluten-celeborn/common/src/main/java/org/apache/spark/shuffle/gluten/celeborn/CelebornUtils.java
@@ -65,7 +65,7 @@ public class CelebornUtils {
           unregisterAppShuffleId.invoke(shuffleIdTracker, shuffleClient, 
appShuffleId);
         }
         return true;
-      } catch (NoSuchMethodException ex) {
+      } catch (NoSuchMethodException | ClassNotFoundException ex) {
         try {
           if (lifecycleManager != null) {
             Method unregisterShuffleMethod =


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to