We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 770cf18 commit ac7fafdCopy full SHA for ac7fafd
packages/service-library/src/servicelib/redis/_client.py
@@ -65,7 +65,7 @@ def __post_init__(self) -> None:
65
async def setup(self) -> None:
66
if not await self.ping():
67
await self.shutdown()
68
- url_safe: URL = URL(self.redis_dsn).with_password("???")
+ url_safe = URL(self.redis_dsn).with_password("???")
69
raise CouldNotConnectToRedisError(dsn=f"{url_safe}")
70
71
self._health_check_task = asyncio.create_task(
0 commit comments