Channel worker, error in redis asyncio #1967
Unanswered
YonatanNemtsov
asked this question in
Help!
Replies: 1 comment 1 reply
-
It's hard to see from what you've given — but looks like it's between redis and Python, so redis-py at a guess. Can you reduce it and open an issue over there to see what they say? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I have a consumer and "worker" consumer, connected in a redis channel layer.
When I run the server and worker I sometimes get the following error in the server:
File ".../lib/python3.10/site-packages/redis/asyncio/client.py", line 536, in parse_response
retval = self.response_callbacks[command_name](response, **options)
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'NoneType'
as far as I understand, parse_response, defined here, parses a response from the redis server and returns it. So I want to ask, Is this an redis-py bug, or channels bug, or am I doing something wrong?
Here are the consumer and "worker" consumer:
Thanks
Beta Was this translation helpful? Give feedback.
All reactions