Skip to content

Commit

Permalink
relax ufuzz job timing constraint (#4094)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlamsl authored Sep 5, 2020
1 parent 226aa1f commit fb30aec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ufuzz/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ process.on("beforeExit", function() {
if (queued > 3) {
process.stdout.write("0");
} else if (now - earliest > 0 && total > 1) {
process.stdout.write(Math.min(20 * (now - earliest) / (total - 1), 6300000).toFixed(0));
process.stdout.write(Math.min(20 * (now - earliest) / (total - 1), 18000000).toFixed(0));
} else {
process.stdout.write("3600000");
}
Expand Down

0 comments on commit fb30aec

Please sign in to comment.