MCPcopy Index your code
hub / github.com/apache/cassandra-python-driver / OperationTimedOut

Class OperationTimedOut

cassandra/__init__.py:690–711  ·  view source on GitHub ↗

The operation took longer than the specified (client-side) timeout to complete. This is not an error generated by Cassandra, only the driver.

Source from the content-addressed store, hash-verified

688
689
690class OperationTimedOut(DriverException):
691 """
692 The operation took longer than the specified (client-side) timeout
693 to complete. This is not an error generated by Cassandra, only
694 the driver.
695 """
696
697 errors = None
698 """
699 A dict of errors keyed by the :class:`~.Host` against which they occurred.
700 """
701
702 last_host = None
703 """
704 The last :class:`~.Host` this operation was attempted against.
705 """
706
707 def __init__(self, errors=None, last_host=None):
708 self.errors = errors
709 self.last_host = last_host
710 message = "errors=%s, last_host=%s" % (self.errors, self.last_host)
711 Exception.__init__(self, message)
712
713
714class UnsupportedOperation(DriverException):

Callers 7

factoryMethod · 0.90
wait_for_responsesMethod · 0.90
deliverMethod · 0.90
waitMethod · 0.90
add_execution_profileMethod · 0.90
_on_timeoutMethod · 0.90

Calls

no outgoing calls

Tested by 1