- Timestamp:
- Jan 17, 2013 6:32:44 PM (12 years ago)
- Branches:
- master
- Children:
- 1819839, 5e71d34
- Parents:
- e62fb86
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fedd/federation/remote_service.py
re62fb86 r950b55e 2 2 3 3 import copy 4 import traceback 4 5 5 6 from socket import error as socket_error … … 560 561 "Bad format message (XMLRPC??): %s" % e) 561 562 except FaultException, e: 563 self.log.debug('SOAP Fault') 562 564 port = self.hammer_port_shut(port) 563 565 # If the method isn't implemented we get a FaultException … … 581 583 raise service_error(service_error.internal, 582 584 "Unexpected fault body") 585 except: 586 self.log.error('Something weird: %s' % traceback.format_exc()) 587 583 588 584 589 if retries >= self.max_retries and fail_exc and not ok:
Note: See TracChangeset
for help on using the changeset viewer.