Skip to content

Commit

Permalink
Extend RESTful services to list/count/cancel/delete tasks which are …
Browse files Browse the repository at this point in the history
…scheduled for retry after failure #4141
  • Loading branch information
gunterze committed Aug 31, 2023
1 parent c26774d commit df3d3b5
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -228,12 +228,12 @@ public class Task {

public enum Status {
SCHEDULED(false),
SCHEDULED_FOR_RETRY(false),
IN_PROCESS(false),
COMPLETED(true),
WARNING(true),
FAILED(true),
CANCELED(true);
CANCELED(true),
SCHEDULED_FOR_RETRY(false);

public final boolean done;

Expand Down

0 comments on commit df3d3b5

Please sign in to comment.