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 4050c91 commit 2d23865Copy full SHA for 2d23865
redis/_parsers/helpers.py
@@ -275,7 +275,7 @@ def parse_stream_list(response, **options):
275
for r in response:
276
if r is not None:
277
if "claim_min_idle_time" in options:
278
- data.append((r[0], pairs_to_dict(r[1]), r[2], r[3]))
+ data.append((r[0], pairs_to_dict(r[1]), *r[2:]))
279
else:
280
data.append((r[0], pairs_to_dict(r[1])))
281
0 commit comments