summaryrefslogtreecommitdiffstats
path: root/src/lib/Proxy.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Proxy.py')
-rw-r--r--src/lib/Proxy.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/Proxy.py b/src/lib/Proxy.py
index bb53a24af..b7801a03c 100644
--- a/src/lib/Proxy.py
+++ b/src/lib/Proxy.py
@@ -73,6 +73,9 @@ class RetryMethod(xmlrpclib._Method):
if hasattr(err, 'errno') and err.errno == 336265218:
self.log.error("SSL Key error")
break
+ if hasattr(err, 'errno') and err.errno == 185090050:
+ self.log.error("SSL CA error")
+ break
if retry == 3:
self.log.error("Server failure: %s" % err)
raise xmlrpclib.Fault(20, err)