relax `ufuzz` job timing constraint (#4094)
authorAlex Lam S.L <alexlamsl@gmail.com>
Sat, 5 Sep 2020 11:29:50 +0000 (12:29 +0100)
committerGitHub <noreply@github.com>
Sat, 5 Sep 2020 11:29:50 +0000 (19:29 +0800)
test/ufuzz/actions.js

index f9567d5..fa4431a 100644 (file)
@@ -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");
     }