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, |