We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7fcd7b commit cf1875dCopy full SHA for cf1875d
redis/asyncio/cluster.py
@@ -1576,10 +1576,10 @@ async def _execute(
1576
msg = (
1577
f"Command # {cmd.position + 1} ({command}) of pipeline "
1578
f"caused error on node {name}: "
1579
- f"{result.args}"
+ f"{exc.args}"
1580
)
1581
- result.args = (msg,) + result.args[1:]
1582
- raise result
+ exc.args = (msg,) + exc.args[1:]
+ raise exc
1583
1584
default_node = nodes.get(client.get_default_node().name)
1585
if default_node is not None:
0 commit comments