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

Unified Diff: gclient_utils.py

Issue 10913226: Remove the hack to use chromiumcodereview.appspot.com. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 8 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 | tests/gclient_utils_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_utils.py
diff --git a/gclient_utils.py b/gclient_utils.py
index c24be5229cc6a78c5ba8b7f80f2ae9b6e953b473..ab45d28cc6bed09de46c4163dde258dbf7de96c3 100644
--- a/gclient_utils.py
+++ b/gclient_utils.py
@@ -752,9 +752,6 @@ def UpgradeToHttps(url):
# Do not automatically upgrade http to https if a port number is provided.
if parsed[0] == 'http' and not re.match(r'^.+?\:\d+$', parsed[1]):
parsed[0] = 'https'
- # Until GAE supports SNI, manually convert the url.
- if parsed[1] == 'codereview.chromium.org':
- parsed[1] = 'chromiumcodereview.appspot.com'
return urlparse.urlunparse(parsed)
« no previous file with comments | « no previous file | tests/gclient_utils_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698