From 6d16344dc2dd324f4a2be64f2fd4a762404f36da Mon Sep 17 00:00:00 2001 From: Jason Lynch Date: Wed, 29 Apr 2026 12:48:38 -0400 Subject: [PATCH] fix: correct usage in server cmd We've renamed the control plane server binary to `pgedge-control-plane`. This commit fixes the usage information that you get from the server's inline help, e.g.: ```sh go run ./server --help ``` --- server/cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/cmd/root.go b/server/cmd/root.go index aeaee4f7..f656e2d2 100644 --- a/server/cmd/root.go +++ b/server/cmd/root.go @@ -41,7 +41,7 @@ var ( func newRootCmd(i *do.Injector) *cobra.Command { return &cobra.Command{ - Use: "control-plane", + Use: "pgedge-control-plane", Short: "pgEdge control plane server", PersistentPreRunE: func(cmd *cobra.Command, args []string) error { cmd.SilenceUsage = true