Skip to content

Commit

Permalink
Backport of Fix: missing Node Status "disconnected" in API into relea…
Browse files Browse the repository at this point in the history
…se/1.3.x (#16172)

This pull request was automerged via backport-assistant
  • Loading branch information
hc-github-team-nomad-core committed Feb 14, 2023
1 parent 188ace1 commit 38e4dc7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .changelog/16166.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
api: Added missing node states to NodeStatus constants
```
7 changes: 4 additions & 3 deletions api/nodes.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ import (
)

const (
NodeStatusInit = "initializing"
NodeStatusReady = "ready"
NodeStatusDown = "down"
NodeStatusInit = "initializing"
NodeStatusReady = "ready"
NodeStatusDown = "down"
NodeStatusDisconnected = "disconnected"

// NodeSchedulingEligible and Ineligible marks the node as eligible or not,
// respectively, for receiving allocations. This is orthogonal to the node
Expand Down

0 comments on commit 38e4dc7

Please sign in to comment.