(self, host, *args, **kwargs)
| 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: |
no test coverage detected