phet commented on code in PR #4032: URL: https://github.com/apache/gobblin/pull/4032#discussion_r1776075605
########## gobblin-service/src/main/java/org/apache/gobblin/service/modules/orchestration/proc/ResumeDagProc.java: ########## @@ -54,7 +54,7 @@ public ResumeDagProc(ResumeDagTask resumeDagTask, Config config) { @Override protected Optional<Dag<JobExecutionPlan>> initialize(DagManagementStateStore dagManagementStateStore) throws IOException { - return dagManagementStateStore.getFailedDag(getDagId()); + return dagManagementStateStore.getDag(getDagId()); Review Comment: verify the one returned is actually failed? ########## gobblin-service/src/main/java/org/apache/gobblin/service/modules/orchestration/proc/ResumeDagProc.java: ########## @@ -54,7 +54,7 @@ public ResumeDagProc(ResumeDagTask resumeDagTask, Config config) { @Override protected Optional<Dag<JobExecutionPlan>> initialize(DagManagementStateStore dagManagementStateStore) throws IOException { - return dagManagementStateStore.getFailedDag(getDagId()); + return dagManagementStateStore.getDag(getDagId()); Review Comment: shall we verify the one returned is actually failed? -- 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