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

Unified Diff: tools/telemetry/telemetry/page/page_set.py

Issue 126093006: [telemetry] Allow public page set data and WPR archives. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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: tools/telemetry/telemetry/page/page_set.py
diff --git a/tools/telemetry/telemetry/page/page_set.py b/tools/telemetry/telemetry/page/page_set.py
index b05250d6b955ebe4653aed6ac25a4d407ef5a20c..7c0f1d7322bfc7b4b5d0533845579f34f507bf2b 100644
--- a/tools/telemetry/telemetry/page/page_set.py
+++ b/tools/telemetry/telemetry/page/page_set.py
@@ -57,7 +57,6 @@ class PageSet(object):
# Attempt to download the credentials file.
if self.credentials_path:
cloud_storage.GetIfChanged(
- cloud_storage.INTERNAL_BUCKET,
os.path.join(self._base_dir, self.credentials_path))
# Scan every serving directory for .sha1 files
@@ -77,7 +76,7 @@ class PageSet(object):
os.path.join(dirpath, filename))
if extension != '.sha1':
continue
- cloud_storage.GetIfChanged(cloud_storage.PUBLIC_BUCKET, path)
+ cloud_storage.GetIfChanged(path)
@classmethod
def FromFile(cls, file_path):
« no previous file with comments | « tools/telemetry/telemetry/page/cloud_storage.py ('k') | tools/telemetry/telemetry/page/page_set_archive_info.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698