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

Method _make_connection_factory

cassandra/cluster.py:1637–1639  ·  view source on GitHub ↗
(self, host, *args, **kwargs)

Source from the content-addressed store, hash-verified

1635 return self.connection_class.factory(endpoint, self.connect_timeout, *args, **kwargs)
1636
1637 def _make_connection_factory(self, host, *args, **kwargs):
1638 kwargs = self._make_connection_kwargs(host.endpoint, kwargs)
1639 return partial(self.connection_class.factory, host.endpoint, self.connect_timeout, *args, **kwargs)
1640
1641 def _make_connection_kwargs(self, endpoint, kwargs_dict):
1642 if self._auth_provider_callable:

Callers 1

_start_reconnectorMethod · 0.95

Calls 1

Tested by

no test coverage detected