Skip to content

Commit

Permalink
DEV: fix return values for CLIENT UNBLOCK command
Browse files Browse the repository at this point in the history
  • Loading branch information
dwdougherty committed May 29, 2024
1 parent f8fde6e commit e243f8c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions data/resp2_replies.json
Original file line number Diff line number Diff line change
Expand Up @@ -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`."
Expand Down
4 changes: 2 additions & 2 deletions data/resp3_replies.json
Original file line number Diff line number Diff line change
Expand Up @@ -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`."
Expand Down

0 comments on commit e243f8c

Please sign in to comment.