[autotest] Only stage test_suites in create_suite_job.
Other pieces of the infrastructure will now stage their own artifacts,
so we no longer need to wait on the full payloads to download.
BUG=chromium:282541
DEPLOY=apache
TEST=scheduled a suite locally. ran.
Change-Id: I73272e31c156c22a935663596639303a9a7f0ab8
Reviewed-on: https://chromium-review.googlesource.com/174106
Tested-by: Alex Miller <milleral@chromium.org>
Reviewed-by: Prashanth B <beeps@chromium.org>
Commit-Queue: Alex Miller <milleral@chromium.org>
diff --git a/frontend/afe/site_rpc_interface.py b/frontend/afe/site_rpc_interface.py
index f536c75..7d088de 100644
--- a/frontend/afe/site_rpc_interface.py
+++ b/frontend/afe/site_rpc_interface.py
@@ -129,7 +129,7 @@
ds = dev_server.ImageServer.resolve(build)
timings[constants.DOWNLOAD_STARTED_TIME] = formatted_now()
try:
- ds.trigger_download(build, synchronous=False)
+ ds.stage_artifacts(build, ['test_suites'])
except dev_server.DevServerException as e:
raise error.StageBuildFailure(
"Failed to stage %s for %s: %s" % (build, board, e))