Skip to content

Commit

Permalink
Fix: missing Node Status "disconnected" in API
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre Cauchois committed Feb 13, 2023
1 parent d0f9008 commit b402a48
Showing 1 changed file with 4 additions and 3 deletions.
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 b402a48

Please sign in to comment.