-
Notifications
You must be signed in to change notification settings - Fork 196
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
aioredis 1.3.1 dropped explicit loop requirement in API #179
Comments
edelvalle
added a commit
to edelvalle/channels_redis
that referenced
this issue
May 27, 2020
Trying to slove django#179 (aioredis 1.3.1 dropped explicit loop requirement in API)
wmorrell
added a commit
to wmorrell/channels_redis
that referenced
this issue
May 27, 2020
Starting with aioredis 1.3.1, the loop parameter is deprecated when calling create_redis. See aio-libs-abandoned/aioredis-py#666 and django#179. When running Python 3.8+ and aioredis 1.3.1+, calls should omit the loop parameter. Otherwise, continue to include the parameter for the older versions that expect it.
wmorrell
added a commit
to wmorrell/channels_redis
that referenced
this issue
Jun 15, 2020
Starting with aioredis 1.3.1, the loop parameter is deprecated when calling create_redis. See aio-libs-abandoned/aioredis-py#666 and django#179. When running Python 3.8+ and aioredis 1.3.1+, calls should omit the loop parameter. Otherwise, continue to include the parameter for the older versions that expect it.
carltongibson
pushed a commit
that referenced
this issue
Jun 25, 2020
Starting with aioredis 1.3.1, the loop parameter is deprecated when calling create_redis. See aio-libs-abandoned/aioredis-py#666 and #179. When running Python 3.8+ and aioredis 1.3.1+, calls should omit the loop parameter. Otherwise, continue to include the parameter for the older versions that expect it.
dudleyhunt86
added a commit
to dudleyhunt86/channels_redis-python-dev
that referenced
this issue
Oct 7, 2022
Starting with aioredis 1.3.1, the loop parameter is deprecated when calling create_redis. See aio-libs-abandoned/aioredis-py#666 and django/channels_redis#179. When running Python 3.8+ and aioredis 1.3.1+, calls should omit the loop parameter. Otherwise, continue to include the parameter for the older versions that expect it.
goldentroll
added a commit
to goldentroll/channels_redis
that referenced
this issue
Mar 14, 2023
Starting with aioredis 1.3.1, the loop parameter is deprecated when calling create_redis. See aio-libs-abandoned/aioredis-py#666 and django/channels_redis#179. When running Python 3.8+ and aioredis 1.3.1+, calls should omit the loop parameter. Otherwise, continue to include the parameter for the older versions that expect it.
jonmzeiset
pushed a commit
to jonmzeiset/channels_redis
that referenced
this issue
Jan 22, 2024
Starting with aioredis 1.3.1, the loop parameter is deprecated when calling create_redis. See aio-libs-abandoned/aioredis-py#666 and django/channels_redis#179. When running Python 3.8+ and aioredis 1.3.1+, calls should omit the loop parameter. Otherwise, continue to include the parameter for the older versions that expect it.
jonmzeiset
pushed a commit
to jonmzeiset/channels_redis
that referenced
this issue
Feb 22, 2024
Starting with aioredis 1.3.1, the loop parameter is deprecated when calling create_redis. See aio-libs-abandoned/aioredis-py#666 and django/channels_redis#179. When running Python 3.8+ and aioredis 1.3.1+, calls should omit the loop parameter. Otherwise, continue to include the parameter for the older versions that expect it.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Your OS and runtime environment, and browser if applicable
Arch Linux, Python 3.8.1
What you expected to happen vs. what actually happened?
I expect no warnings, but the dependency aioredis when used in version 1.3.1 is issuing a warning in python 3.8+ that the
loop
parameter is deprecated.See: aio-libs-abandoned/aioredis-py#666
A
pip freeze
output showing your package versions, not really required to reproduce this.How you're running Channels (runserver? daphne/runworker? Nginx/Apache in front?):
I'm using
runserver
anduvicorn
.Console logs and full tracebacks of any errors
The text was updated successfully, but these errors were encountered: