Skip to content

Commit

Permalink
tune parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
inker committed Jul 7, 2024
1 parent d3f3d16 commit 0bd6ba3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default ({
},
getTimeout: (workerIndex, attempt) => {
const factor = workerIndex === 0 ? 100 : 7 / (workerIndex + 1);
return factor * Math.min(10000, 5000 * Math.exp(attempt / 10));
return factor * Math.min(5000, 5000 * Math.exp(attempt / 10));
},
signal,
});

0 comments on commit 0bd6ba3

Please sign in to comment.