Add command fingerprint comment for XSETID.

This commit is contained in:
antirez 2018-10-25 13:08:48 +02:00
parent 998001fbf2
commit f5494b1862

View File

@ -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) {
robj *o = lookupKeyWriteOrReply(c,c->argv[1],shared.nokeyerr);
if (o == NULL || checkType(c,o,OBJ_STREAM)) return;