arjun4084346 commented on code in PR #3999:
URL: https://github.com/apache/gobblin/pull/3999#discussion_r1675031420


##########
gobblin-service/src/main/java/org/apache/gobblin/service/modules/orchestration/DagStateStore.java:
##########
@@ -47,28 +47,42 @@ public interface DagStateStore {
    */
   void cleanUp(Dag<JobExecutionPlan> dag) throws IOException;
 
+  default boolean cleanUp(DagManager.DagId dagId) throws IOException {
+    cleanUp(dagId.toString());
+    return true;
+  }
+
   /**
    * Delete the {@link Dag} from the backing store, typically upon completion 
of execution.
    * @param dagId The ID of the dag to clean up.
    */
+  // todo - change it to return boolean
+  @Deprecated

Review Comment:
   keeping them because DagManager uses it



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