abhishekmjain commented on code in PR #4097: URL: https://github.com/apache/gobblin/pull/4097#discussion_r1955977411
########## gobblin-temporal/src/main/java/org/apache/gobblin/temporal/joblauncher/GobblinTemporalJobLauncher.java: ########## @@ -188,4 +189,15 @@ protected void removeTasksFromCurrentJob(List<String> workUnitIdsToRemove) { protected void addTasksToCurrentJob(List<WorkUnit> workUnitsToAdd) { log.warn("NOT IMPLEMENTED: Temporal addTasksToCurrentJob"); } + + @Override + public void close() throws IOException { + try { + this.workflowServiceStubs.getOptions().getMetricsScope().close(); Review Comment: Makes sense, added a wrapper as per other suggestion. ########## gobblin-temporal/src/main/java/org/apache/gobblin/temporal/cluster/GobblinTemporalTaskRunner.java: ########## @@ -292,6 +293,12 @@ public synchronized void stop() { this.containerMetrics.get().stopMetricsReporting(); } + try { + this.workflowServiceStubs.getOptions().getMetricsScope().close(); + } catch (Exception e) { + logger.error("Exception occurred while closing MetricsScope", e); + } + Review Comment: Done -- 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: dev-unsubscr...@gobblin.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org