From e1bd23cd5b807cdb3321b15e06e18fb4a6aa925c Mon Sep 17 00:00:00 2001 From: r-vasquez Date: Fri, 13 Dec 2024 11:50:44 -0800 Subject: [PATCH] rpk remote debug bundle: job-id help text change This string must be a UUID and it was not clear in the help text. --- src/go/rpk/pkg/cli/debug/remotebundle/start.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/go/rpk/pkg/cli/debug/remotebundle/start.go b/src/go/rpk/pkg/cli/debug/remotebundle/start.go index ba477a28956ca..0a90103c7d1a3 100644 --- a/src/go/rpk/pkg/cli/debug/remotebundle/start.go +++ b/src/go/rpk/pkg/cli/debug/remotebundle/start.go @@ -155,7 +155,7 @@ status, run: }, } f := cmd.Flags() - f.StringVar(&jobID, "job-id", "", "ID of the job to start debug bundle in") + f.StringVar(&jobID, "job-id", "", "UUID of the job to start the debug bundle in") f.BoolVar(&noConfirm, "no-confirm", false, "Disable confirmation prompt") // Debug bundle options: opts.InstallFlags(f)