(exception)
| 170 | |
| 171 | def register_exchanges_with_retry(): |
| 172 | def retry_if_io_error(exception): |
| 173 | return isinstance(exception, socket.error) |
| 174 | |
| 175 | retrying_obj = retrying.Retrying( |
| 176 | retry_on_exception=retry_if_io_error, |
nothing calls this directly
no outgoing calls
no test coverage detected