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

Unified Diff: tools/telemetry/telemetry/core/temporary_http_server.py

Issue 15787005: [Telemetry] Make telemetry faster on win7. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 | « tools/telemetry/telemetry/core/chrome/tracing_backend.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/core/temporary_http_server.py
diff --git a/tools/telemetry/telemetry/core/temporary_http_server.py b/tools/telemetry/telemetry/core/temporary_http_server.py
index e6dd42cf12574d3fba4f1808acfe7e7a23d7089b..821b2ec4266302e6668dac4b08f78d4fcbfe4a34 100644
--- a/tools/telemetry/telemetry/core/temporary_http_server.py
+++ b/tools/telemetry/telemetry/core/temporary_http_server.py
@@ -34,7 +34,7 @@ class TemporaryHTTPServer(object):
browser_backend.GetRemotePort(self._host_port)))
def IsServerUp():
- return not socket.socket().connect_ex(('localhost', self._host_port))
+ return not socket.socket().connect_ex(('127.0.0.1', self._host_port))
util.WaitFor(IsServerUp, 10)
@property
« no previous file with comments | « tools/telemetry/telemetry/core/chrome/tracing_backend.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698