diff options
author | Daniel Joseph Barnhart Clark <dclark@pobox.com> | 2007-07-02 16:15:05 +0000 |
---|---|---|
committer | Daniel Joseph Barnhart Clark <dclark@pobox.com> | 2007-07-02 16:15:05 +0000 |
commit | c72be0ec4f137f9fee9fa7621461ab3088e999a3 (patch) | |
tree | 23ea4ccb6505249033f2b15f70d80e440aba764f /src | |
parent | 0acdf1cefa1987bedc202bdf387875a25200d973 (diff) | |
download | bcfg2-c72be0ec4f137f9fee9fa7621461ab3088e999a3.tar.gz bcfg2-c72be0ec4f137f9fee9fa7621461ab3088e999a3.tar.bz2 bcfg2-c72be0ec4f137f9fee9fa7621461ab3088e999a3.zip |
Removed because we no longer use built-in Python SSL (we use tlslite instead).
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@3400 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/Client/Proxy.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/Client/Proxy.py b/src/lib/Client/Proxy.py index 285eff8b9..051494f32 100644 --- a/src/lib/Client/Proxy.py +++ b/src/lib/Client/Proxy.py @@ -139,9 +139,6 @@ class SafeProxy: except xmlrpclib.Fault: self.log.debug("Operation %s completed with fault" % (methodName)) raise - except socket.sslerror: - self.log.debug("Attempt %d of %d failed due to SSL negotiation failure" % - ((irs + 1), self._retries)) except socket.error, serr: self.log.debug("Attempting %s (%d of %d) failed because %s" % (methodName, (irs+1), self._retries, serr)) |