summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2019-05-03 13:37:39 +0300
committerWolfy-J <[email protected]>2019-05-03 13:37:39 +0300
commite52c29d081a14f0ec4efb01da11c69215ea40a6a (patch)
tree52a54ed292bfb5e27ef950e598181de0f70d759a /cmd
parent46519d2a383c9564007e1d2a6beb492988f8c6c9 (diff)
better worker removal mechanism
Diffstat (limited to 'cmd')
-rw-r--r--cmd/util/table.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/util/table.go b/cmd/util/table.go
index 565c0679..4fa05ae2 100644
--- a/cmd/util/table.go
+++ b/cmd/util/table.go
@@ -40,6 +40,8 @@ func renderStatus(status string) string {
return Sprintf("<cyan>ready</reset>")
case "working":
return Sprintf("<green>working</reset>")
+ case "disabled":
+ return Sprintf("<yellow>disabled</reset>")
case "stopped":
return Sprintf("<red>stopped</reset>")
case "errored":