ayushtkn commented on code in PR #5860: URL: https://github.com/apache/hive/pull/5860#discussion_r2151322649
########## ql/src/java/org/apache/hadoop/hive/ql/exec/tez/TezSessionPoolManager.java: ########## @@ -119,7 +119,7 @@ public void startPool(HiveConf conf, final WMFullResourcePlan resourcePlan) thro if (resourcePlan != null) { Collection<String> appliedTriggers = updateTriggers(resourcePlan); LOG.info("Updated tez session pool manager with triggers {} from active resource plan: {}", - appliedTriggers, resourcePlan.getPlan().getName()); + appliedTriggers, resourcePlan.getPlan() == null ? "null" : resourcePlan.getPlan().getName()); Review Comment: Are we sure `resourcePlan` can't be `null`? Looking at the Hiveserver2 code, it does check for `resourcePlan` as well https://github.com/apache/hive/blob/98c0a1a047e9c32b8418eee5c53d9413c0ac428d/service/src/java/org/apache/hive/service/server/HiveServer2.java#L933 and https://github.com/apache/hive/blob/98c0a1a047e9c32b8418eee5c53d9413c0ac428d/service/src/java/org/apache/hive/service/server/HiveServer2.java#L952 -- 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: gitbox-unsubscr...@hive.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org