tanishq-chugh commented on code in PR #6670:
URL: https://github.com/apache/hive/pull/6670#discussion_r3999789524
##########
standalone-metastore/metastore-client/src/main/java/org/apache/hadoop/hive/metastore/client/ThriftHiveMetaStoreClient.java:
##########
@@ -432,6 +433,20 @@ public boolean isLocalMetaStore() {
return localMetaStore;
}
+ @Override
+ public void syncEmbeddedHandlerConf(Configuration conf) {
+ if (!localMetaStore || client == null) {
+ return;
+ }
+ try {
+ java.lang.reflect.Method setConfMethod =
+ client.getClass().getMethod("setConf", Configuration.class);
Review Comment:
nit: `java.lang.reflect.Method` is being imported, i don't think you need
absolute definition
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]