Skip to content

Commit

Permalink
[#4666] fixed BackOffSleepTask max waiting time to 10 minute (#4668)
Browse files Browse the repository at this point in the history
  • Loading branch information
chengyouling authored Jan 6, 2025
1 parent db8d948 commit bc4db8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class AbstractTask {
public class BackOffSleepTask implements Task {
private static final long BASE = 3000;

private static final long MAX = 10 * 60 * 10000;
private static final long MAX = 10 * 60 * 1000;

long waitTime;

Expand Down

0 comments on commit bc4db8e

Please sign in to comment.