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

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

Issue 16133005: Revert 202250 "[Telemetry] Make telemetry faster on win7." (Closed) Base URL: svn://svn.chromium.org/chrome/
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 | « trunk/src/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: trunk/src/tools/telemetry/telemetry/core/temporary_http_server.py
===================================================================
--- trunk/src/tools/telemetry/telemetry/core/temporary_http_server.py (revision 202583)
+++ trunk/src/tools/telemetry/telemetry/core/temporary_http_server.py (working copy)
@@ -34,7 +34,7 @@
browser_backend.GetRemotePort(self._host_port)))
def IsServerUp():
- return not socket.socket().connect_ex(('127.0.0.1', self._host_port))
+ return not socket.socket().connect_ex(('localhost', self._host_port))
util.WaitFor(IsServerUp, 10)
@property
« no previous file with comments | « trunk/src/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