diff --git a/cmd/fetch.go b/cmd/fetch.go index 709c3cf..f331862 100644 --- a/cmd/fetch.go +++ b/cmd/fetch.go @@ -151,7 +151,11 @@ func fetchTasksStatus(cmd *cobra.Command, args []string) { role = nil } //TODO: Add filtering down by status - taskQuery := &aurora.TaskQuery{Environment: env, Role: role, JobName: name} + taskQuery := &aurora.TaskQuery{ + Environment: env, + Role: role, + JobName: name, + Statuses: aurora.LIVE_STATES} tasks, err := client.GetTaskStatus(taskQuery) if err != nil { diff --git a/cmd/root.go b/cmd/root.go index fc371a2..de42b9e 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -31,7 +31,7 @@ var message = new(string) var updateID string var log = logrus.New() -const australisVer = "v0.0.8" +const australisVer = "v0.0.6" var monitorInterval, monitorTimeout time.Duration