My favorites | Sign in
Project Home Downloads Wiki Issues Source
New issue   Search
for
  Advanced search   Search tips   Subscriptions
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
Status:  Invalid
Owner:  ----
Closed:  May 2010


Sign in to add a comment
 
Reported by bbea...@gmail.com, May 10, 2010
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
Wrong project.  Bugs against repo should be filed in
https://code.google.com/p/git-repo/
Status: Invalid
May 10, 2010
#2 bbea...@gmail.com
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
#3 bbea...@gmail.com
Thanks. will re-file.
Sign in to add a comment

Powered by Google Project Hosting