Source: optuna
Version: 3.6.1-1
Severity: serious

Dear Maintainer,

python-fakeredis has been updated to a new major version.

https://tracker.debian.org/pkg/python-fakeredis

optuna is now failing it's test and most likely also need an update. 

I'm filling this bug as "Serious" to allow migration
of fakeredis in a timely manner.



Most likely "python-redis" itself needs to be updated too;
this one as a lot of reverse dependencies
and will need a lot of work :-)


Greetings



540s     def read_response(self, **kwargs: Any) -> Any:  # type: ignore
540s         if not self._sock:
540s             raise redis.ConnectionError(msgs.CONNECTION_ERROR_MSG)
540s         if not self._server.connected:
540s             try:
540s                 response = self._sock.responses.get_nowait()
540s             except queue.Empty:
540s                 if kwargs.get("disconnect_on_error", True):
540s                     self.disconnect()
540s                 raise redis.ConnectionError(msgs.CONNECTION_ERROR_MSG)
540s         else:
540s             response = self._sock.responses.get()
540s         if isinstance(response, redis.ResponseError):
540s >           raise response
540s E           redis.exceptions.ResponseError: unknown command `eval`, with 
args beginning with:
540s 
540s /usr/lib/python3/dist-packages/fakeredis/_connection.py:66: ResponseError

Reply via email to