Commit 267f7f2c authored by antirez's avatar antirez
Browse files

Streams: fix error description for XADD when specified ID is small.

parent 0a6780e5
......@@ -966,7 +966,7 @@ void xaddCommand(client *c) {
&id, id_given ? &id : NULL)
== C_ERR)
{
addReplyError(c,"The ID specified in XADD is smaller than the "
addReplyError(c,"The ID specified in XADD is equal or smaller than the "
"target stream top item");
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