| Issue 564: | git_config.py:ReviewProtocol doesn't honor the proxy usage | |
| 1 person starred this issue and may be notified of changes. | Back to list |
Affected Version: What steps will reproduce the problem? 1. run from behind a firewall 2. set proxy 3. repo upload What is the expected output? What do you see instead? repo upload should drill thru the proxy and upload the code. Instead, it hangs in the ReviewProtocol procedure. Please provide any additional information below. The problem is that ReviewProtocol doesn't utilize the proxy when it contacts the remote server to obtain the "info port": info = urlopen(u).read() A work around for this is to hot-wire the call: - info = urlopen(u).read() + info = 'review.source.android.com 29418'
May 10, 2010
#1
sop@google.com
Status:
Invalid
May 10, 2010
My proxy settings might be useful: all_proxy=socks://proxy.xx.yyyy.com:911/ ftp_proxy=http://proxy-socks.xx.yyyy.com:911/ GIT_PROXY_COMMAND=/usr/bin/socks-gw http_proxy=http://proxy-socks.xx.yyyy.com:911/ https_proxy=https://proxy.xx.yyyy.com:911/ no_proxy=localhost, 127.0.0.1, *.yyyy.com, aaa.*.*.*, bbb.*.*.*
May 10, 2010
Thanks. will re-file. |
|
| ► Sign in to add a comment |