Raised when an operation times out waiting to checkout a connection from the pool. Subclass of :exc:`~pymongo.errors.ConnectionFailure`. .. versionadded:: 4.2
| 69 | |
| 70 | |
| 71 | class WaitQueueTimeoutError(ConnectionFailure): |
| 72 | """Raised when an operation times out waiting to checkout a connection from the pool. |
| 73 | |
| 74 | Subclass of :exc:`~pymongo.errors.ConnectionFailure`. |
| 75 | |
| 76 | .. versionadded:: 4.2 |
| 77 | """ |
| 78 | |
| 79 | @property |
| 80 | def timeout(self) -> bool: |
| 81 | return True |
| 82 | |
| 83 | |
| 84 | class AutoReconnect(ConnectionFailure): |
no outgoing calls
no test coverage detected