(self, *args, **kwargs)
| 633 | connection_class_ssl = SentinelManagedSSLConnection if sentinel else None |
| 634 | |
| 635 | def __init__(self, *args, **kwargs): |
| 636 | if self.sentinel is None: |
| 637 | raise ImproperlyConfigured(E_REDIS_SENTINEL_MISSING.strip()) |
| 638 | |
| 639 | super().__init__(*args, **kwargs) |
| 640 | |
| 641 | def as_uri(self, include_password=False): |
| 642 | """Return the server addresses as URIs, sanitizing the password or not.""" |
nothing calls this directly
no test coverage detected