MCPcopy
hub / github.com/benoitc/gunicorn / DirtyTimeoutError

Class DirtyTimeoutError

gunicorn/dirty/errors.py:80–86  ·  view source on GitHub ↗

Raised when a dirty operation times out.

Source from the content-addressed store, hash-verified

78
79
80class DirtyTimeoutError(DirtyError):
81 """Raised when a dirty operation times out."""
82
83 def __init__(self, message="Operation timed out", timeout=None):
84 details = {"timeout": timeout} if timeout else {}
85 super().__init__(message, details)
86 self.timeout = timeout
87
88
89class DirtyConnectionError(DirtyError):

Callers 11

test_protocol_responseFunction · 0.90
test_error_serializationFunction · 0.90
_execute_lockedMethod · 0.85
connect_asyncMethod · 0.85
execute_asyncMethod · 0.85
_read_next_chunkMethod · 0.85
_read_next_chunkMethod · 0.85
_execute_on_workerMethod · 0.85
executeMethod · 0.85

Calls

no outgoing calls