diff --git a/tools/asynq/cmd/workers.go b/tools/asynq/cmd/workers.go index 9126bcc..b395ef4 100644 --- a/tools/asynq/cmd/workers.go +++ b/tools/asynq/cmd/workers.go @@ -61,7 +61,7 @@ func workers(cmd *cobra.Command, args []string) { if x.Started != y.Started { return x.Started.Before(y.Started) } - return x.ID.String() < y.ID.String() + return x.ID < y.ID }) cols := []string{"Process", "ID", "Type", "Payload", "Queue", "Started"}