Skip to content

Commit

Permalink
cli: include namespace in output when querying job stauts. (#6912)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrasell authored and tgross committed Jan 8, 2020
1 parent 41686ce commit 8e6a7bc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions command/job_status.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ func (c *JobStatusCommand) Run(args []string) int {
fmt.Sprintf("Type|%s", *job.Type),
fmt.Sprintf("Priority|%d", *job.Priority),
fmt.Sprintf("Datacenters|%s", strings.Join(job.Datacenters, ",")),
fmt.Sprintf("Namespace|%s", *job.Namespace),
fmt.Sprintf("Status|%s", getStatusString(*job.Status, job.Stop)),
fmt.Sprintf("Periodic|%v", periodic),
fmt.Sprintf("Parameterized|%v", parameterized),
Expand Down

0 comments on commit 8e6a7bc

Please sign in to comment.