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 6fc198e commit 2dbaa3eCopy full SHA for 2dbaa3e
starlette_plus/redis.py
@@ -19,7 +19,7 @@
19
class Redis:
20
def __init__(self, *, url: str | None = None) -> None:
21
url = url or "redis://localhost:6379/0"
22
- pool = redis.ConnectionPool.from_url(url) # type: ignore
+ pool = redis.ConnectionPool.from_url(url, decode_responses=True) # type: ignore
23
24
self.pool: redis.Redis = redis.Redis.from_pool(pool)
25
0 commit comments