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

Unified Diff: chrome/test/functional/webpagereplay.py

Issue 23523017: [telemetry] Make default flags passed to WebPageRelay overridable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/functional/webpagereplay.py
diff --git a/chrome/test/functional/webpagereplay.py b/chrome/test/functional/webpagereplay.py
index 0cfba58cf55cb7b534899c0f3ca3a1544df3d050..8b0ca9303317836c958974f35cf5b71a460e86a2 100755
--- a/chrome/test/functional/webpagereplay.py
+++ b/chrome/test/functional/webpagereplay.py
@@ -120,14 +120,14 @@ class ReplayServer(object):
def _AddDefaultReplayOptions(self):
"""Set WPR command-line options. Can be overridden if needed."""
- self.replay_options += [
+ self.replay_options = [
'--host', str(self._replay_host),
'--port', str(self._http_port),
'--ssl_port', str(self._https_port),
'--use_closest_match',
'--no-dns_forwarding',
'--log_level', 'warning'
- ]
+ ] + self.replay_options
def _CheckPath(self, label, path):
if not os.path.exists(path):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698