-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeError: duplicate base class TimeoutError in python3.11 #497
Labels
bug
Something isn't working
Comments
can you review this #498 |
What is the outcome to this issue? I got the same issue as you got on Opal. |
Hi @roekatz do you have more details here in response |
I ended up just installing package |
These days (hiredis==3.0.0, redis==5.0.8) it's as simple as: import redis
creds_provider = redis.UsernamePasswordCredentialProvider("default", "redis_password")
import redis.asyncio as redis
r = redis.Redis(host='localhost', port=6379, decode_responses=True, credential_provider=creds_provider)
await r.ping() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
opal-server run
cannnot start in python 3.11This is caused by aioredis (aio-libs-abandoned/aioredis-py#1409), and aioredis is archived since redis-py already include it.
The text was updated successfully, but these errors were encountered: