From 9d8547116f4fdf7e86c974ad51b06f783ca064b2 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Mon, 24 Nov 2025 06:25:38 +0100 Subject: [PATCH] cmd/healthcheck: remove shorthand flag for --host --- cmd/healthcheck.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/healthcheck.go b/cmd/healthcheck.go index 1b7f7b4e..04155123 100644 --- a/cmd/healthcheck.go +++ b/cmd/healthcheck.go @@ -23,7 +23,7 @@ func init() { RootCmd.AddCommand(healthcheckCmd) healthcheckCmd.Flags().Uint16VarP(&HealthcheckOptions.Port, "port", "p", 8080, "HTTP port for health check") - healthcheckCmd.Flags().StringVarP(&HealthcheckOptions.Host, "host", "h", "localhost", + healthcheckCmd.Flags().StringVarP(&HealthcheckOptions.Host, "host", "", "localhost", "HTTP host for health check") }