jerryshao commented on code in PR #8813:
URL: https://github.com/apache/gravitino/pull/8813#discussion_r2431980395


##########
core/src/main/java/org/apache/gravitino/utils/IsolatedClassLoader.java:
##########
@@ -261,7 +262,8 @@ private boolean isCatalogClass(String name) {
    */
   private boolean isBarrierClass(String name) {
     // We need to add more later on when we have more catalog implementations.
-    return barrierClasses.stream().anyMatch(name::startsWith);
+    return barrierClasses.stream().anyMatch(name::startsWith)
+        || name.startsWith("org.apache.hadoop");

Review Comment:
   The previous CI is passed, but it introduces other problems, I need to check 
it.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to