Author AndrewTrick
Recipients AndrewTrick, cameron, chrisl, ckassab, djc, doko, dpeterson, facundobatista, gregory.p.smith, hozn, jamesbroadhead, jcea, jjlee, kxroberto, matb, matejcik, mihalis68, mjpieters, mwilck, nfl, orsenthil, piranha, poeml, statik, vila
Date 2009-06-22.20:05:35
SpamBayes Score 0.0521374
Marked as misclassified No
Message-id <1245701151.79.0.667595586667.issue1424152@psf.upfronthosting.co.za>
In-reply-to
Content
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)
History
Date User Action Args
2009-06-22 20:05:52AndrewTricksetrecipients: + 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:51AndrewTricksetmessageid: <1245701151.79.0.667595586667.issue1424152@psf.upfronthosting.co.za>
2009-06-22 20:05:36AndrewTricklinkissue1424152 messages
2009-06-22 20:05:35AndrewTrickcreate