Connect to the replica set. Don't authenticate.
(self, h: Any = None, p: Any = None, **kwargs: Any)
| 1089 | return self._async_mongo_client(h, p, directConnection=True, **kwargs) |
| 1090 | |
| 1091 | def rs_client_noauth(self, h: Any = None, p: Any = None, **kwargs: Any) -> MongoClient[dict]: |
| 1092 | """Connect to the replica set. Don't authenticate.""" |
| 1093 | return self._async_mongo_client(h, p, authenticate=False, **kwargs) |
| 1094 | |
| 1095 | def rs_client(self, h: Any = None, p: Any = None, **kwargs: Any) -> MongoClient[dict]: |
| 1096 | """Connect to the replica set and authenticate if necessary.""" |
nothing calls this directly
no test coverage detected