aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots
diff options
context:
space:
mode:
authorGravatar Joe Gregorio <jcgregorio@google.com>2018-06-27 08:07:55 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-06-27 15:21:50 +0000
commit05f83d9ea31b589502f3a46f79221726013b5581 (patch)
treed400427ea0fb306bc783cec0a23ac0aa1b3e4752 /infra/bots
parent5d27c512765eab915149db086a24a98b67eb9ef7 (diff)
Increase number of concurrent requests that fiddlecli makes to fiddle.skia.org.
Bug: skia: Change-Id: I6de7bfadf9c955f7c08c670164f78a988ab7ab9f Reviewed-on: https://skia-review.googlesource.com/137860 Auto-Submit: Joe Gregorio <jcgregorio@google.com> Reviewed-by: Joe Gregorio <jcgregorio@google.com> Commit-Queue: Joe Gregorio <jcgregorio@google.com>
Diffstat (limited to 'infra/bots')
-rw-r--r--infra/bots/recipes/bookmaker.expected/nightly_bookmaker.json2
-rw-r--r--infra/bots/recipes/bookmaker.expected/nightly_failed_fiddlecli.json2
-rw-r--r--infra/bots/recipes/bookmaker.expected/nightly_failed_fiddles.json2
-rw-r--r--infra/bots/recipes/bookmaker.expected/nightly_failed_upload.json2
-rw-r--r--infra/bots/recipes/bookmaker.py1
5 files changed, 9 insertions, 0 deletions
diff --git a/infra/bots/recipes/bookmaker.expected/nightly_bookmaker.json b/infra/bots/recipes/bookmaker.expected/nightly_bookmaker.json
index 142cc9d165..037bd507bf 100644
--- a/infra/bots/recipes/bookmaker.expected/nightly_bookmaker.json
+++ b/infra/bots/recipes/bookmaker.expected/nightly_bookmaker.json
@@ -159,6 +159,8 @@
"[START_DIR]/fiddle.json",
"--output",
"[START_DIR]/fiddleout.json",
+ "--procs",
+ "10",
"--logtostderr",
"--force"
],
diff --git a/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddlecli.json b/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddlecli.json
index ac543a7325..7561fffb72 100644
--- a/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddlecli.json
+++ b/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddlecli.json
@@ -159,6 +159,8 @@
"[START_DIR]/fiddle.json",
"--output",
"[START_DIR]/fiddleout.json",
+ "--procs",
+ "10",
"--logtostderr",
"--force"
],
diff --git a/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddles.json b/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddles.json
index 7aa515334f..dfb0083440 100644
--- a/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddles.json
+++ b/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddles.json
@@ -159,6 +159,8 @@
"[START_DIR]/fiddle.json",
"--output",
"[START_DIR]/fiddleout.json",
+ "--procs",
+ "10",
"--logtostderr",
"--force"
],
diff --git a/infra/bots/recipes/bookmaker.expected/nightly_failed_upload.json b/infra/bots/recipes/bookmaker.expected/nightly_failed_upload.json
index 41b715391b..ad463720b2 100644
--- a/infra/bots/recipes/bookmaker.expected/nightly_failed_upload.json
+++ b/infra/bots/recipes/bookmaker.expected/nightly_failed_upload.json
@@ -159,6 +159,8 @@
"[START_DIR]/fiddle.json",
"--output",
"[START_DIR]/fiddleout.json",
+ "--procs",
+ "10",
"--logtostderr",
"--force"
],
diff --git a/infra/bots/recipes/bookmaker.py b/infra/bots/recipes/bookmaker.py
index 9e5ae36a9e..9d344001f9 100644
--- a/infra/bots/recipes/bookmaker.py
+++ b/infra/bots/recipes/bookmaker.py
@@ -83,6 +83,7 @@ def RunSteps(api):
cmd = [fiddlecli_binary,
'--input', fiddlecli_input,
'--output', fiddlecli_output,
+ '--procs', 10, # Number of concurrent requests.
'--logtostderr',
'--force',
]