Unverified Commit 71499ab1 authored by Salvatore Sanfilippo's avatar Salvatore Sanfilippo Committed by GitHub
Browse files

Merge pull request #5893 from itamarhaber/bzpop-arity

Fixes BZ[REV]POP's arity
parents c49abcb7 cd2743c0
...@@ -480,11 +480,11 @@ struct redisCommand redisCommandTable[] = { ...@@ -480,11 +480,11 @@ struct redisCommand redisCommandTable[] = {
"write fast @sortedset", "write fast @sortedset",
0,NULL,1,1,1,0,0,0}, 0,NULL,1,1,1,0,0,0},
{"bzpopmin",bzpopminCommand,-2, {"bzpopmin",bzpopminCommand,-3,
"write no-script fast @sortedset @blocking", "write no-script fast @sortedset @blocking",
0,NULL,1,-2,1,0,0,0}, 0,NULL,1,-2,1,0,0,0},
{"bzpopmax",bzpopmaxCommand,-2, {"bzpopmax",bzpopmaxCommand,-3,
"write no-script fast @sortedset @blocking", "write no-script fast @sortedset @blocking",
0,NULL,1,-2,1,0,0,0}, 0,NULL,1,-2,1,0,0,0},
......
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