Unverified Commit 611e1173 authored by Wen Hui's avatar Wen Hui Committed by GitHub
Browse files

Add missing NOLOOP tracking flag in help (#8892)

parent f3ee2d98
...@@ -2485,7 +2485,7 @@ void clientCommand(client *c) { ...@@ -2485,7 +2485,7 @@ void clientCommand(client *c) {
"UNBLOCK <clientid> [TIMEOUT|ERROR]", "UNBLOCK <clientid> [TIMEOUT|ERROR]",
" Unblock the specified blocked client.", " Unblock the specified blocked client.",
"TRACKING (ON|OFF) [REDIRECT <id>] [BCAST] [PREFIX <prefix> [...]]", "TRACKING (ON|OFF) [REDIRECT <id>] [BCAST] [PREFIX <prefix> [...]]",
" [OPTIN] [OPTOUT]", " [OPTIN] [OPTOUT] [NOLOOP]",
" Control server assisted client side caching.", " Control server assisted client side caching.",
"TRACKINGINFO", "TRACKINGINFO",
" Report tracking status for the current connection.", " Report tracking status for the current connection.",
...@@ -2721,7 +2721,7 @@ NULL ...@@ -2721,7 +2721,7 @@ NULL
addReply(c,shared.ok); addReply(c,shared.ok);
} else if (!strcasecmp(c->argv[1]->ptr,"tracking") && c->argc >= 3) { } else if (!strcasecmp(c->argv[1]->ptr,"tracking") && c->argc >= 3) {
/* CLIENT TRACKING (on|off) [REDIRECT <id>] [BCAST] [PREFIX first] /* CLIENT TRACKING (on|off) [REDIRECT <id>] [BCAST] [PREFIX first]
* [PREFIX second] [OPTIN] [OPTOUT] ... */ * [PREFIX second] [OPTIN] [OPTOUT] [NOLOOP]... */
long long redir = 0; long long redir = 0;
uint64_t options = 0; uint64_t options = 0;
robj **prefix = NULL; robj **prefix = NULL;
......
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