MCPcopy Create free account
hub / github.com/apache/cassandra-python-driver / ProtocolVersionUnsupported

Class ProtocolVersionUnsupported

cassandra/connection.py:421–428  ·  view source on GitHub ↗

Server rejected startup message due to unsupported protocol version

Source from the content-addressed store, hash-verified

419
420
421class ProtocolVersionUnsupported(ConnectionException):
422 """
423 Server rejected startup message due to unsupported protocol version
424 """
425 def __init__(self, endpoint, startup_version):
426 msg = "Unsupported protocol version on %s: %d" % (endpoint, startup_version)
427 super(ProtocolVersionUnsupported, self).__init__(msg, endpoint)
428 self.startup_version = startup_version
429
430
431class ConnectionBusy(Exception):

Callers 1

factoryMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected