vsinghal85 commented on code in PR #4076: URL: https://github.com/apache/gobblin/pull/4076#discussion_r1848023490
########## gobblin-runtime/src/main/java/org/apache/gobblin/runtime/spec_catalog/FlowCatalog.java: ########## @@ -392,7 +393,12 @@ private Map<String, AddSpecResponse> updateOrAddSpecHelper(Spec spec, boolean tr // If flow fails compilation, the result will have a non-empty string with the error if (!response.getValue().getFailures().isEmpty()) { for (Map.Entry<SpecCatalogListener, CallbackResult<AddSpecResponse>> entry : response.getValue().getFailures().entrySet()) { - throw entry.getValue().getError().getCause(); + Throwable error = entry.getValue().getError(); + if (error instanceof TooSoonToRerunSameFlowException) { + throw (TooSoonToRerunSameFlowException) error; + } else { + throw error.getCause(); + } Review Comment: Sure updated as per suggestion -- 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