Commit f5494b18 authored by antirez's avatar antirez
Browse files

Add command fingerprint comment for XSETID.

parent 998001fb
...@@ -1821,7 +1821,9 @@ NULL ...@@ -1821,7 +1821,9 @@ NULL
} }
} }
/* Set the internal "last ID" of a stream. */ /* XSETID <stream> <groupname> <id>
*
* Set the internal "last ID" of a stream. */
void xsetidCommand(client *c) { void xsetidCommand(client *c) {
robj *o = lookupKeyWriteOrReply(c,c->argv[1],shared.nokeyerr); robj *o = lookupKeyWriteOrReply(c,c->argv[1],shared.nokeyerr);
if (o == NULL || checkType(c,o,OBJ_STREAM)) return; if (o == NULL || checkType(c,o,OBJ_STREAM)) return;
......
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