Message89611
With this patch, I continued to get the following error
SSL23_GET_SERVER_HELLO
Until my coworker finally found a fix posted by Philippe Biondi:
+++ b/mercurial/keepalive.py
@@ -237,6 +237,8 @@
else:
# no (working) free connections were found. Create a
new one.
h = http_class(host)
+ if hasattr(req,"_tunnel_host") and req._tunnel_host:
+ h.set_tunnel(req._tunnel_host)
if DEBUG: DEBUG.info("creating new connection to %s (%d)",
host, id(h))
self._cm.add(host, h, 0) |
|
Date |
User |
Action |
Args |
2009-06-22 20:05:52 | AndrewTrick | set | recipients:
+ AndrewTrick, doko, facundobatista, gregory.p.smith, jjlee, mjpieters, jcea, orsenthil, kxroberto, vila, matejcik, djc, mwilck, chrisl, mihalis68, dpeterson, poeml, cameron, matb, nfl, ckassab, hozn, statik, piranha, jamesbroadhead |
2009-06-22 20:05:51 | AndrewTrick | set | messageid: <1245701151.79.0.667595586667.issue1424152@psf.upfronthosting.co.za> |
2009-06-22 20:05:36 | AndrewTrick | link | issue1424152 messages |
2009-06-22 20:05:35 | AndrewTrick | create | |
|