Skip to content

Commit b4a5c87

Browse files
authored
chore(server): Hide internal CO flags from output (#5814)
1 parent 68a5d2c commit b4a5c87

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

src/server/main_service.cc

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -839,23 +839,15 @@ string_view CommandOptName(CO::CommandOpt opt, bool enabled) {
839839
case BLOCKING:
840840
return "blocking";
841841
case HIDDEN:
842-
return "hidden";
843842
case INTERLEAVED_KEYS:
844-
return "interleaved-keys";
845843
case GLOBAL_TRANS:
846-
return "global-trans";
847844
case STORE_LAST_KEY:
848-
return "store-last-key";
849845
case VARIADIC_KEYS:
850-
return "variadic-keys";
851846
case NO_AUTOJOURNAL:
852-
return "custom-journal";
853847
case NO_KEY_TRANSACTIONAL:
854-
return "no-key-transactional";
855848
case NO_KEY_TX_SPAN_ALL:
856-
return "no-key-tx-span-all";
857849
case IDEMPOTENT:
858-
return "idempotent";
850+
return "";
859851
}
860852
return "";
861853
}

0 commit comments

Comments
 (0)