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
When executing a Redis pipeline, it may return {:ok, results} but the results may contain one or more Redis errors (Redix.Error structs). Currently, this scenario is not handled by the adapter causing unexpected behavior. The proposed solution is to check the pipeline results and raise an error if any Redis error is found within them.
The text was updated successfully, but these errors were encountered:
When executing a Redis pipeline, it may return
{:ok, results}
but theresults
may contain one or more Redis errors (Redix.Error
structs). Currently, this scenario is not handled by the adapter causing unexpected behavior. The proposed solution is to check the pipeline results and raise an error if any Redis error is found within them.The text was updated successfully, but these errors were encountered: