Skip to content

Commit

Permalink
fix: When set 1 second to Job Timeout, The server will execcute in a …
Browse files Browse the repository at this point in the history
…infinite loop (OD-2208)
  • Loading branch information
robinshine committed Dec 11, 2024
1 parent fa91428 commit 175f7b7
Show file tree
Hide file tree
Showing 5 changed files with 129 additions and 213 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -277,9 +277,9 @@ public void setMaxRetries(int maxRetries) {
this.maxRetries = maxRetries;
}

@Editable(order=9420, group="More Settings", description="Delay for the first retry in seconds. "
+ "Delay of subsequent retries will be calculated using an exponential back-off "
+ "based on this delay")
@Editable(order=9420, group="More Settings", description="Delay for the first retry in seconds. " +
"Delay of subsequent retries will be calculated using an exponential back-off based on " +
"this value")
@Min(value=1, message="This value should not be less than 1")
public int getRetryDelay() {
return retryDelay;
Expand Down

This file was deleted.

Loading

0 comments on commit 175f7b7

Please sign in to comment.