pratapaditya04 commented on code in PR #4109: URL: https://github.com/apache/gobblin/pull/4109#discussion_r2028846824
########## gobblin-service/src/main/java/org/apache/gobblin/service/modules/orchestration/task/DagTask.java: ########## @@ -65,10 +65,11 @@ public boolean conclude() { boolean completedLease = this.leaseObtainedStatus.completeLease(); this.dagProcEngineMetrics.markDagActionsConclude(this.dagAction.getDagActionType(), completedLease); return completedLease; - } catch (IOException e) { + } catch (Exception e) { this.dagProcEngineMetrics.markDagActionsConclude(this.dagAction.getDagActionType(), false); Review Comment: also a RuntimeException is throw in this method markDagActionsConclude, we need to catch that as well -- 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