We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dcd5a0 commit 700ad7bCopy full SHA for 700ad7b
1 file changed
client/state.go
@@ -81,9 +81,9 @@ func waitForJobStates(jobs []string, check *stateCheck) error {
81
return nil
82
}
83
// otherwise print output
84
- if state.sub == "" || state.sub == "dead" {
85
- fmt.Printf("\033[0;33m%v:\033[0m %v, %v \r",
86
- state.name, state.loaded, state.active)
+ if state.loaded == "inactive" {
+ fmt.Printf("\033[0;33m%v:\033[0m %v \r",
+ state.name, state.loaded)
87
} else {
88
fmt.Printf("\033[0;33m%v:\033[0m %v, %v (%v) \r",
89
state.name, state.loaded, state.active, state.sub)
0 commit comments