Skip to content

Commit

Permalink
api: fix missing Node Status "disconnected" in API (#16166)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre Cauchois committed Feb 14, 2023
1 parent ad35b0d commit 1154c05
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 1154c05

Please sign in to comment.