Skip to content

Commit

Permalink
Add missing commas from debug command (valkey-io#662)
Browse files Browse the repository at this point in the history
The missing commas caused the `DEBUG HELP` to be compressed onto a
single line.

Signed-off-by: Madelyn Olson <[email protected]>
  • Loading branch information
madolson authored Jun 18, 2024
1 parent 4135894 commit b33f932
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -430,8 +430,8 @@ void debugCommand(client *c) {
"DROP-CLUSTER-PACKET-FILTER <packet-type>",
" Drop all packets that match the filtered type. Set to -1 allow all packets.",
"CLOSE-CLUSTER-LINK-ON-PACKET-DROP <0|1>",
" This is valid only when DROP-CLUSTER-PACKET-FILTER is set to a valid packet type."
" When set to 1, the cluster link is closed after dropping a packet based on the filter."
" This is valid only when DROP-CLUSTER-PACKET-FILTER is set to a valid packet type.",
" When set to 1, the cluster link is closed after dropping a packet based on the filter.",
"OOM",
" Crash the server simulating an out-of-memory error.",
"PANIC",
Expand Down

0 comments on commit b33f932

Please sign in to comment.