From 99b4df4af565bbf05f8aafbdf4d65d768416c250 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D1=82=D0=BE=D0=BD=20=D0=91=D0=B5=D0=B7=D0=B4?= =?UTF-8?q?=D0=B5=D0=BD=D0=B5=D0=B6=D0=BD=D1=8B=D1=85?= Date: Sun, 24 Jul 2022 20:40:50 +0500 Subject: Fix: `start_id` type for `XAUTOCLAIM` (#2257) * Changed start_id type for xautoclaim * Added to changes Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com> --- redis/commands/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'redis/commands/core.py') diff --git a/redis/commands/core.py b/redis/commands/core.py index 027d3db..455c3f4 100644 --- a/redis/commands/core.py +++ b/redis/commands/core.py @@ -3420,7 +3420,7 @@ class StreamCommands(CommandsProtocol): groupname: GroupT, consumername: ConsumerT, min_idle_time: int, - start_id: int = 0, + start_id: StreamIdT = "0-0", count: Union[int, None] = None, justid: bool = False, ) -> ResponseT: -- cgit v1.2.1