From df93f48e88eb5ca2b4f08605c69cce943b2337c3 Mon Sep 17 00:00:00 2001 From: Mustafa Ilyas Date: Tue, 5 Nov 2024 09:17:11 +0000 Subject: [PATCH] Update cancel.go --- cmd/armadactl/cmd/cancel.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/armadactl/cmd/cancel.go b/cmd/armadactl/cmd/cancel.go index cd1c58ee55f..4a47bf68dc9 100644 --- a/cmd/armadactl/cmd/cancel.go +++ b/cmd/armadactl/cmd/cancel.go @@ -92,7 +92,7 @@ func cancelExecutorCmd() *cobra.Command { }, } - cmd.Flags().StringSliceP("queues", "q", []string{}, "Cancel jobs on executor matching the specified queue names. If no queues are provided, jobs across all queues will be cancelled.") + cmd.Flags().StringSliceP("queues", "q", []string{}, "Cancel jobs on executor matching the specified queue names. If no queues are provided, jobs across all queues will be cancelled. Provided queues should be comma separated, as in the following example: queueA,queueB,queueC.") cmd.Flags().StringSliceP("priority-classes", "p", []string{}, "Cancel jobs on executor matching the specified priority classes.") return cmd }