An operation on an open connection exceeded socketTimeoutMS. The remaining connections in the pool stay open. In the case of a write operation, you cannot know whether it succeeded or failed. Subclass of :exc:`~pymongo.errors.AutoReconnect`.
| 109 | |
| 110 | |
| 111 | class NetworkTimeout(AutoReconnect): |
| 112 | """An operation on an open connection exceeded socketTimeoutMS. |
| 113 | |
| 114 | The remaining connections in the pool stay open. In the case of a write |
| 115 | operation, you cannot know whether it succeeded or failed. |
| 116 | |
| 117 | Subclass of :exc:`~pymongo.errors.AutoReconnect`. |
| 118 | """ |
| 119 | |
| 120 | @property |
| 121 | def timeout(self) -> bool: |
| 122 | return True |
| 123 | |
| 124 | |
| 125 | def _format_detailed_error( |
no outgoing calls