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

Unified Diff: telemetry/telemetry/internal/results/results_options.py

Issue 2241603003: [Telemetry] Allow custom upload bucket names (Closed) Base URL: git@github.com:catapult-project/catapult@master
Patch Set: Created 4 years, 4 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
Index: telemetry/telemetry/internal/results/results_options.py
diff --git a/telemetry/telemetry/internal/results/results_options.py b/telemetry/telemetry/internal/results/results_options.py
index a1c0bb7cc8d6ad1809d50ecfab39f77bfdbc8534..7a14fb4e5a5aa4f00bbc1a1e347308f2a1bc9fff 100644
--- a/telemetry/telemetry/internal/results/results_options.py
+++ b/telemetry/telemetry/internal/results/results_options.py
@@ -59,10 +59,10 @@ def AddResultsOptions(parser):
group.add_option('--upload-results', action='store_true',
help='Upload the results to cloud storage.')
group.add_option('--upload-bucket', default='output',
- choices=cloud_storage.BUCKET_ALIAS_NAMES,
help='Storage bucket to use for the uploaded results. ' +
'Defaults to output bucket. Supported values are: ' +
- ', '.join(cloud_storage.BUCKET_ALIAS_NAMES) + '.')
+ ', '.join(cloud_storage.BUCKET_ALIAS_NAMES) +
+ '; or a valid cloud storage bucket name.')
group.add_option('--results-label',
default=None,
help='Optional label to use for the results of a run .')
« no previous file with comments | « no previous file | telemetry/telemetry/internal/story_runner.py » ('j') | telemetry/telemetry/internal/story_runner.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698