Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions src/commands.def
Original file line number Diff line number Diff line change
Expand Up @@ -6722,9 +6722,9 @@ const char *COMMANDLOG_GET_Tips[] = {

/* COMMANDLOG GET type argument table */
struct COMMAND_ARG COMMANDLOG_GET_type_Subargs[] = {
{MAKE_ARG("slow",ARG_TYPE_STRING,-1,NULL,NULL,NULL,CMD_ARG_NONE,0,NULL)},
{MAKE_ARG("large-request",ARG_TYPE_STRING,-1,NULL,NULL,NULL,CMD_ARG_NONE,0,NULL)},
{MAKE_ARG("large-reply",ARG_TYPE_STRING,-1,NULL,NULL,NULL,CMD_ARG_NONE,0,NULL)},
{MAKE_ARG("slow",ARG_TYPE_PURE_TOKEN,-1,"SLOW",NULL,NULL,CMD_ARG_NONE,0,NULL)},
{MAKE_ARG("large-request",ARG_TYPE_PURE_TOKEN,-1,"LARGE-REQUEST",NULL,NULL,CMD_ARG_NONE,0,NULL)},
{MAKE_ARG("large-reply",ARG_TYPE_PURE_TOKEN,-1,"LARGE-REPLY",NULL,NULL,CMD_ARG_NONE,0,NULL)},
};

/* COMMANDLOG GET argument table */
Expand Down Expand Up @@ -6773,9 +6773,9 @@ const char *COMMANDLOG_LEN_Tips[] = {

/* COMMANDLOG LEN type argument table */
struct COMMAND_ARG COMMANDLOG_LEN_type_Subargs[] = {
{MAKE_ARG("slow",ARG_TYPE_STRING,-1,NULL,NULL,NULL,CMD_ARG_NONE,0,NULL)},
{MAKE_ARG("large-request",ARG_TYPE_STRING,-1,NULL,NULL,NULL,CMD_ARG_NONE,0,NULL)},
{MAKE_ARG("large-reply",ARG_TYPE_STRING,-1,NULL,NULL,NULL,CMD_ARG_NONE,0,NULL)},
{MAKE_ARG("slow",ARG_TYPE_PURE_TOKEN,-1,"SLOW",NULL,NULL,CMD_ARG_NONE,0,NULL)},
{MAKE_ARG("large-request",ARG_TYPE_PURE_TOKEN,-1,"LARGE-REQUEST",NULL,NULL,CMD_ARG_NONE,0,NULL)},
{MAKE_ARG("large-reply",ARG_TYPE_PURE_TOKEN,-1,"LARGE-REPLY",NULL,NULL,CMD_ARG_NONE,0,NULL)},
};

/* COMMANDLOG LEN argument table */
Expand Down Expand Up @@ -6805,9 +6805,9 @@ const char *COMMANDLOG_RESET_Tips[] = {

/* COMMANDLOG RESET type argument table */
struct COMMAND_ARG COMMANDLOG_RESET_type_Subargs[] = {
{MAKE_ARG("slow",ARG_TYPE_STRING,-1,NULL,NULL,NULL,CMD_ARG_NONE,0,NULL)},
{MAKE_ARG("large-request",ARG_TYPE_STRING,-1,NULL,NULL,NULL,CMD_ARG_NONE,0,NULL)},
{MAKE_ARG("large-reply",ARG_TYPE_STRING,-1,NULL,NULL,NULL,CMD_ARG_NONE,0,NULL)},
{MAKE_ARG("slow",ARG_TYPE_PURE_TOKEN,-1,"SLOW",NULL,NULL,CMD_ARG_NONE,0,NULL)},
{MAKE_ARG("large-request",ARG_TYPE_PURE_TOKEN,-1,"LARGE-REQUEST",NULL,NULL,CMD_ARG_NONE,0,NULL)},
{MAKE_ARG("large-reply",ARG_TYPE_PURE_TOKEN,-1,"LARGE-REPLY",NULL,NULL,CMD_ARG_NONE,0,NULL)},
};

/* COMMANDLOG RESET argument table */
Expand Down
11 changes: 7 additions & 4 deletions src/commands/commandlog-get.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,18 +68,21 @@
"arguments": [
{
"name": "slow",
"type": "string"
"type": "pure-token",
"token": "slow"
},
{
"name": "large-request",
"type": "string"
"type": "pure-token",
"token": "large-request"
},
{
"name": "large-reply",
"type": "string"
"type": "pure-token",
"token": "large-reply"
}
]
}
]
}
}
}
11 changes: 7 additions & 4 deletions src/commands/commandlog-len.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,21 @@
"arguments": [
{
"name": "slow",
"type": "string"
"type": "pure-token",
"token": "slow"
},
{
"name": "large-request",
"type": "string"
"type": "pure-token",
"token": "large-request"
},
{
"name": "large-reply",
"type": "string"
"type": "pure-token",
"token": "large-reply"
}
]
}
]
}
}
}
11 changes: 7 additions & 4 deletions src/commands/commandlog-reset.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,21 @@
"arguments": [
{
"name": "slow",
"type": "string"
"type": "pure-token",
"token": "slow"
},
{
"name": "large-request",
"type": "string"
"type": "pure-token",
"token": "large-request"
},
{
"name": "large-reply",
"type": "string"
"type": "pure-token",
"token": "large-reply"
}
]
}
]
}
}
}
Loading