Raised when a connection pool has reached its max_connections limit. This indicates pool exhaustion rather than an actual connection failure.
| 265 | |
| 266 | |
| 267 | class MaxConnectionsError(ConnectionError): |
| 268 | """ |
| 269 | Raised when a connection pool has reached its max_connections limit. |
| 270 | This indicates pool exhaustion rather than an actual connection failure. |
| 271 | """ |
| 272 | |
| 273 | pass |
| 274 | |
| 275 | |
| 276 | class CrossSlotTransactionError(RedisClusterException): |
no outgoing calls