Commit 9e3dfa96 authored by guybe7's avatar guybe7 Committed by Oran Agra
Browse files

Adds LASTID to XCLAIM docs (#11017)

It seems it was overlooked when we first created the json files

(cherry picked from commit 6d6e932f)
parent d28314cb
...@@ -6286,6 +6286,7 @@ struct redisCommandArg XCLAIM_Args[] = { ...@@ -6286,6 +6286,7 @@ struct redisCommandArg XCLAIM_Args[] = {
{"count",ARG_TYPE_INTEGER,-1,"RETRYCOUNT",NULL,NULL,CMD_ARG_OPTIONAL}, {"count",ARG_TYPE_INTEGER,-1,"RETRYCOUNT",NULL,NULL,CMD_ARG_OPTIONAL},
{"force",ARG_TYPE_PURE_TOKEN,-1,"FORCE",NULL,NULL,CMD_ARG_OPTIONAL}, {"force",ARG_TYPE_PURE_TOKEN,-1,"FORCE",NULL,NULL,CMD_ARG_OPTIONAL},
{"justid",ARG_TYPE_PURE_TOKEN,-1,"JUSTID",NULL,NULL,CMD_ARG_OPTIONAL}, {"justid",ARG_TYPE_PURE_TOKEN,-1,"JUSTID",NULL,NULL,CMD_ARG_OPTIONAL},
{"id",ARG_TYPE_STRING,-1,"LASTID",NULL,NULL,CMD_ARG_OPTIONAL},
{0} {0}
}; };
......
...@@ -88,6 +88,12 @@ ...@@ -88,6 +88,12 @@
"token": "JUSTID", "token": "JUSTID",
"type": "pure-token", "type": "pure-token",
"optional": true "optional": true
},
{
"name": "id",
"token": "LASTID",
"type": "string",
"optional": true
} }
] ]
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment