Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: tools/telemetry/telemetry/util/cloud_storage.py

Issue 954753002: [Telemetry] Add PRESUBMIT check to prevent .sha file uploaded without archive file uploaded (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« tools/perf/PRESUBMIT.py ('K') | « tools/perf/PRESUBMIT.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/util/cloud_storage.py
diff --git a/tools/telemetry/telemetry/util/cloud_storage.py b/tools/telemetry/telemetry/util/cloud_storage.py
index 0e1ddc3f44ef8991eb36ea2820038fac7243d4b1..519f659917635037318784f903b95a04cd448ada 100644
--- a/tools/telemetry/telemetry/util/cloud_storage.py
+++ b/tools/telemetry/telemetry/util/cloud_storage.py
@@ -22,6 +22,7 @@ PUBLIC_BUCKET = 'chromium-telemetry'
PARTNER_BUCKET = 'chrome-partner-telemetry'
INTERNAL_BUCKET = 'chrome-telemetry'
+SUPPORTED_BUCKETS = (PUBLIC_BUCKET, PARTNER_BUCKET, INTERNAL_BUCKET)
dtu 2015/02/24 19:12:47 Avoid redundancy: use BUCKET_ALIASES.itervalues().
slamm 2015/02/24 19:22:59 itervalues gives an undefined order.
nednguyen 2015/02/24 19:28:33 Done.
BUCKET_ALIASES = {
'public': PUBLIC_BUCKET,
« tools/perf/PRESUBMIT.py ('K') | « tools/perf/PRESUBMIT.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698