From d640f199c9e0f6c2c34245be5d48e25078c018f3 Mon Sep 17 00:00:00 2001 From: Mustafa Ilyas Date: Tue, 5 Nov 2024 09:19:22 +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 4a47bf68dc9..a6eaa65656d 100644 --- a/cmd/armadactl/cmd/cancel.go +++ b/cmd/armadactl/cmd/cancel.go @@ -93,6 +93,6 @@ 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. 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.") + cmd.Flags().StringSliceP("priority-classes", "p", []string{}, "Cancel jobs on executor matching the specified priority classes. Provided priority classes should be comma separated, as in the following example: armada-default,armada-preemptible.") return cmd }