From 3cae272c2739a3ade66dcfd4cfe0bdcf91ecaf66 Mon Sep 17 00:00:00 2001 From: Todd Date: Fri, 26 Apr 2024 13:48:56 -0700 Subject: [PATCH] Hide ferry specific flags (#4737) --- internal/cmd/base/base.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/cmd/base/base.go b/internal/cmd/base/base.go index 312ac31be4..89144afcf7 100644 --- a/internal/cmd/base/base.go +++ b/internal/cmd/base/base.go @@ -497,6 +497,7 @@ func (c *Command) FlagSet(bit FlagSetBit) *FlagSets { Default: false, EnvVar: envSkipFerry, Usage: "Skips sending the auth token used for this command to the ferry daemon if it is running.", + Hidden: true, }) f.UintVar(&UintVar{ @@ -505,6 +506,7 @@ func (c *Command) FlagSet(bit FlagSetBit) *FlagSets { Default: 9300, EnvVar: EnvFerryDaemonPort, Usage: "The port on which the ferry daemon is listening.", + Hidden: true, }) }