Rename command description and usage

This commit is contained in:
Mads Jon Nielsen 2024-04-23 08:37:37 +02:00
parent b342c7403c
commit e03f53144b
1 changed files with 5 additions and 5 deletions

View File

@ -400,11 +400,11 @@ func fmtConnections(connections []cfapi.Connection, showRecentlyDisconnected boo
func buildReadyCommand() *cli.Command { func buildReadyCommand() *cli.Command {
return &cli.Command{ return &cli.Command{
Name: "health", Name: "ready",
Action: cliutil.ConfiguredAction(readyCommand), Action: cliutil.ConfiguredAction(readyCommand),
Usage: "Tunnel health exit code", Usage: "Tunnel /ready exit code",
UsageText: "cloudflared tunnel [tunnel command options] health [subcommand options]", UsageText: "cloudflared tunnel [tunnel command options] ready [subcommand options]",
Description: "cloudflared tunnel health will return proper exit code if tunnel is healthy or unhealthy", Description: "cloudflared tunnel ready will return proper exit code if tunnel is ready or not",
Flags: []cli.Flag{}, Flags: []cli.Flag{},
CustomHelpTemplate: commandHelpTemplate(), CustomHelpTemplate: commandHelpTemplate(),
} }
@ -417,7 +417,7 @@ func readyCommand(c *cli.Context) error {
return err return err
} }
if res.StatusCode != 200 { if res.StatusCode != 200 {
return fmt.Errorf("health /ready endpoint returned status code %d\n%s", res.StatusCode, res.Body) return fmt.Errorf("/ready endpoint returned status code %d\n%s", res.StatusCode, res.Body)
} }
return nil return nil
} }