When using redis-py (version 2.8.0) I'm getting this strange error (below). Does anyone have a clue why this might be happening?
return self.execute_command('GET', name)
File "..../lib/python2.7/site-packages/redis/client.py", line 394, in execute_command
return self.parse_response(connection, command_name, **options)
File "..../python2.7/site-packages/redis/client.py", line 404, in parse_response
response = connection.read_response()
File ".../python2.7/site-packages/redis/connection.py", line 316, in read_response
raise response
ResponseError: unknown command '502'
Redis server version: 2.2.12, tried setting up redis-server to use unix socket and TCP, also tried downgrading redis-py module to 2.4, always get the same error.
With memcached cache engine I don't see anything like this.
Thanks.