yuqi1129 commented on code in PR #9460:
URL: https://github.com/apache/gravitino/pull/9460#discussion_r2613057287


##########
catalogs/catalog-hive/src/main/java/org/apache/gravitino/catalog/hive/HiveCatalogOperations.java:
##########
@@ -1120,7 +968,9 @@ public void testConnection(
       String comment,
       Map<String, String> properties) {
     try {
-      clientPool.run(IMetaStoreClient::getAllDatabases);
+      clientPool.run(c -> c.getAllDatabases(catalogName));
+    } catch (ConnectionFailedException e) {
+      throw e;

Review Comment:
   Okay, this is not a big problem, and it's OK for me to keep them as it is. 



-- 
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