zratkai commented on code in PR #5860:
URL: https://github.com/apache/hive/pull/5860#discussion_r2152142452
##########
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:
In line No. 119 we already check that:
if (resourcePlan != null) {...
--
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]