Blazer-007 commented on code in PR #4094:
URL: https://github.com/apache/gobblin/pull/4094#discussion_r1934264068


##########
gobblin-yarn/src/main/java/org/apache/gobblin/yarn/GobblinYarnAppLauncher.java:
##########
@@ -643,6 +643,12 @@ ApplicationId setupAndSubmitApplication() throws 
IOException, YarnException, Int
     LOGGER.info("Application Tracking URL: " + 
applicationReport.getTrackingUrl());
     LOGGER.info("Application User: " + applicationReport.getUser() + " Queue: 
" + applicationReport.getQueue());
 
+    // Temporal workflow tracking url
+    String temporalWorkflowTrackingUrl = ConfigUtils.getString(config, 
"gobblin.temporal.ui.server.url", "");
+    if (!temporalWorkflowTrackingUrl.isEmpty()) {
+      LOGGER.info("Temporal Workflow Tracking URL: " + 
temporalWorkflowTrackingUrl);

Review Comment:
   Replace this check with `StringUtils.isNotBlank(temporalWorkflowTrackingUrl)`



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