You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "/opt/redislabs/lib/python3.9/site-packages/jsonrpclib/jsonrpc.py", line 778, in __call__
return self.__send(self.__name, kwargs)
File "/opt/redislabs/lib/python3.9/site-packages/jsonrpclib/jsonrpc.py", line 652, in _request
return response["result"]
TypeError: 'NoneType' object is not subscriptable
from what I could see ServerProxy._request performs self._run_request(request), which can return None, in which case check_for_errors returns the same None, and that is accessed.
The text was updated successfully, but these errors were encountered:
Got the following traceback:
from what I could see
ServerProxy._request
performsself._run_request(request)
, which can returnNone
, in which casecheck_for_errors
returns the sameNone
, and that is accessed.The text was updated successfully, but these errors were encountered: