| 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)
|
|
|
|
|
|
|