Skip to content

Commit

Permalink
s/Created/Created At/
Browse files Browse the repository at this point in the history
  • Loading branch information
camerondavison committed Aug 16, 2016
1 parent 0b7acd5 commit 561d7e3
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion command/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ func (c *StatusCommand) outputJobInfo(client *api.Client, job *api.Job) error {
c.Ui.Output(c.Colorize().Color("\n[bold]Allocations[reset]"))
if len(jobAllocs) > 0 {
allocs = make([]string, len(jobAllocs)+1)
allocs[0] = "ID|Eval ID|Node ID|Task Group|Desired|Status|Created"
allocs[0] = "ID|Eval ID|Node ID|Task Group|Desired|Status|Created At"
for i, alloc := range jobAllocs {
allocs[i+1] = fmt.Sprintf("%s|%s|%s|%s|%s|%s|%s",
limit(alloc.ID, c.length),
Expand Down
2 changes: 1 addition & 1 deletion command/status_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func TestStatusCommand_Run(t *testing.T) {
if !strings.Contains(out, "Allocations") {
t.Fatalf("should dump allocations")
}
if !strings.Contains(out, "Created") {
if !strings.Contains(out, "Created At") {
t.Fatal("should have created header")
}
ui.OutputWriter.Reset()
Expand Down
6 changes: 3 additions & 3 deletions website/source/docs/commands/status.html.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Status = running
Periodic = false

Allocations
ID Eval ID Node ID Task Group Desired Status Created
ID Eval ID Node ID Task Group Desired Status Created At
24cfd201 81efc2fa 8d0331e9 cache run running 08/08/16 21:03:19 CDT
```

Expand All @@ -98,7 +98,7 @@ Task Group "cache":
* Dimension "cpu exhausted" exhausted on 1 nodes

Allocations
ID Eval ID Node ID Task Group Desired Status Created
ID Eval ID Node ID Task Group Desired Status Created At
0b8b9e37 8bf94335 8d0331e9 cache run running 08/08/16 21:03:19 CDT
b206088c 8bf94335 8d0331e9 cache run running 08/08/16 21:03:18 CDT
b82f58b6 8bf94335 8d0331e9 cache run running 08/08/16 21:03:17 CDT
Expand Down Expand Up @@ -133,7 +133,7 @@ Task Group "cache":
* Dimension "cpu exhausted" exhausted on 1 nodes

Allocations
ID Eval ID Node ID Task Group Desired Status Created
ID Eval ID Node ID Task Group Desired Status Created At
0b8b9e37 8bf94335 8d0331e9 cache run running 08/08/16 21:03:19 CDT
b206088c 8bf94335 8d0331e9 cache run running 08/08/16 21:03:19 CDT
b82f58b6 8bf94335 8d0331e9 cache run running 08/08/16 21:03:19 CDT
Expand Down
2 changes: 1 addition & 1 deletion website/source/docs/jobops/inspecting.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Task Group "cache":
* Dimension "cpu exhausted" exhausted on 1 nodes
Allocations
ID Eval ID Node ID Task Group Desired Status Created
ID Eval ID Node ID Task Group Desired Status Created At
12681940 8e38e6cf 4beef22f cache run running 08/08/16 21:03:19 CDT
395c5882 8e38e6cf 4beef22f cache run running 08/08/16 21:03:19 CDT
4d7c6f84 8e38e6cf 4beef22f cache run running 08/08/16 21:03:19 CDT
Expand Down
2 changes: 1 addition & 1 deletion website/source/intro/getting-started/cluster.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ Status = running
Periodic = false
Allocations
ID Eval ID Node ID Task Group Desired Status Created
ID Eval ID Node ID Task Group Desired Status Created At
501154ac 8e0a7cf9 c887deef cache run running 08/08/16 21:03:19 CDT
7e2b3900 8e0a7cf9 fca62612 cache run running 08/08/16 21:03:19 CDT
9c66fcaf 8e0a7cf9 c887deef cache run running 08/08/16 21:03:19 CDT
Expand Down
2 changes: 1 addition & 1 deletion website/source/intro/getting-started/jobs.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Status = running
Periodic = false
Allocations
ID Eval ID Node ID Task Group Desired Status Created
ID Eval ID Node ID Task Group Desired Status Created At
dadcdb81 61b0b423 72687b1a cache run running 06/23/16 01:41:13 UTC
```

Expand Down

0 comments on commit 561d7e3

Please sign in to comment.