Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ public interface Cleaner<P extends HasMetadata> {
* that it can be safely deleted.
* @see DeleteControl#noFinalizerRemoval()
*/
DeleteControl cleanup(P resource, Context<P> context);
DeleteControl cleanup(P resource, Context<P> context) throws Exception;

}
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public Map<String, Object> metadata() {
}

@Override
public DeleteControl execute() {
public DeleteControl execute() throws Exception {
initContextIfNeeded(resource, context);
WorkflowCleanupResult workflowCleanupResult = null;

Expand Down
Loading