-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Closed
Labels
Description
When a pipeline command results in a ResponseError
, both Pipeline
and ClusterPipeline
include the entire original command in the exception message:
Line 1504 in ceb12fe
f"Command # {number} ({cmd}) of pipeline " |
redis-py/redis/asyncio/cluster.py
Line 1596 in ceb12fe
f"Command # {cmd.position + 1} ({command}) of pipeline " |
This exception can be extremely large, especially for commands that are sending a large blob to Redis. It would probably suffice to only include a snippet.
danielshaar