From 64a856e1413e65532f091ce3a2fdf051db6dfee5 Mon Sep 17 00:00:00 2001 From: David Dougherty Date: Wed, 29 May 2024 11:56:16 -0700 Subject: [PATCH] DEV: fix return values for CLIENT UNBLOCK command (#266) --- data/resp2_replies.json | 4 ++-- data/resp3_replies.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/data/resp2_replies.json b/data/resp2_replies.json index 1069b437e..5e3fc546a 100644 --- a/data/resp2_replies.json +++ b/data/resp2_replies.json @@ -198,8 +198,8 @@ ], "CLIENT UNBLOCK": [ "One of the following:", - "* [Integer reply](../../develop/reference/protocol-spec#integers): `0` if the client was unblocked successfully.", - "* [Integer reply](../../develop/reference/protocol-spec#integers): `1` if the client wasn't unblocked." + "* [Integer reply](../../develop/reference/protocol-spec#integers): `1` if the client was unblocked successfully.", + "* [Integer reply](../../develop/reference/protocol-spec#integers): `0` if the client wasn't unblocked." ], "CLIENT UNPAUSE": [ "[Simple string reply](../../develop/reference/protocol-spec#simple-strings): `OK`." diff --git a/data/resp3_replies.json b/data/resp3_replies.json index 6d314e1d5..b12ad2ca2 100644 --- a/data/resp3_replies.json +++ b/data/resp3_replies.json @@ -198,8 +198,8 @@ ], "CLIENT UNBLOCK": [ "One of the following:", - "* [Integer reply](../../develop/reference/protocol-spec#integers): `0` if the client was unblocked successfully.", - "* [Integer reply](../../develop/reference/protocol-spec#integers): `1` if the client wasn't unblocked." + "* [Integer reply](../../develop/reference/protocol-spec#integers): `1` if the client was unblocked successfully.", + "* [Integer reply](../../develop/reference/protocol-spec#integers): `0` if the client wasn't unblocked." ], "CLIENT UNPAUSE": [ "[Simple string reply](../../develop/reference/protocol-spec#simple-strings): `OK`."