Ignore:
Timestamp:
May 11, 2010 10:37:41 AM (14 years ago)
Author:
Ted Faber <faber@…>
Branches:
axis_example, compt_changes, info-ops, master, version-3.01, version-3.02
Children:
7dbfaed
Parents:
175b444
Message:

Deal with another random way SSL can fail us.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fedd/federation/util.py

    r175b444 r10a7053  
    66
    77import httplib
     8
     9from socket import sslerror
    810
    911from M2Crypto import SSL
     
    206208            failed_exception = e
    207209            retries += 1
     210        except sslerror, e:
     211            failed_exception = e
     212            retries += 1
    208213        except SSLError, e:
    209214            failed_exception = e
Note: See TracChangeset for help on using the changeset viewer.