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

Unified Diff: tools/findit/common/http_client_local.py

Issue 525433003: [Findit] Use a thread pool. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix blame.py Created 6 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: tools/findit/common/http_client_local.py
diff --git a/tools/findit/common/http_client_local.py b/tools/findit/common/http_client_local.py
index fccb0b60266b44fe1300a6d77e78b195685ab671..9f48fb9cca2466b517b76f052a133608dfe77d68 100644
--- a/tools/findit/common/http_client_local.py
+++ b/tools/findit/common/http_client_local.py
@@ -228,4 +228,6 @@ class HttpClientLocal(http_client.HttpClient):
def Get(url, params={}, timeout=None):
if params:
url = '%s?%s' % (url, urllib.urlencode(params))
- return _SendRequest(url, timeout=timeout)
+ print 'requesting url: %s' % url
stgao 2014/08/29 22:47:36 I will revert this before committing. I'm running
+ status_code, content = _SendRequest(url, timeout=timeout)
+ return status_code, content
« no previous file with comments | « tools/findit/blame.py ('k') | tools/findit/crash_utils.py » ('j') | tools/findit/crash_utils.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698