mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
Show wait until value in eval status if it is set
This commit is contained in:
@@ -217,6 +217,11 @@ func (c *EvalStatusCommand) Run(args []string) int {
|
||||
fmt.Sprintf("Priority|%d", eval.Priority),
|
||||
fmt.Sprintf("Placement Failures|%s", failureString))
|
||||
|
||||
if !eval.WaitUntil.IsZero() {
|
||||
basic = append(basic,
|
||||
fmt.Sprintf("Wait Until|%s", formatTime(eval.WaitUntil)))
|
||||
}
|
||||
|
||||
if verbose {
|
||||
// NextEval, PreviousEval, BlockedEval
|
||||
basic = append(basic,
|
||||
|
||||
Reference in New Issue
Block a user