Update allocations.go (#17726)
* Update allocations.go updated missing client status "unknown" #17688 * changelog * Update .changelog/17726.txt adding relevant desc. Co-authored-by: Seth Hoenig <shoenig@duck.com> --------- Co-authored-by: Seth Hoenig <shoenig@duck.com>
This commit is contained in:
parent
649831c1d3
commit
4c6906d873
|
@ -0,0 +1,3 @@
|
|||
```release-note:bug
|
||||
api: add missing constant for unknown allocation status
|
||||
```
|
|
@ -30,6 +30,7 @@ const (
|
|||
AllocClientStatusComplete = "complete"
|
||||
AllocClientStatusFailed = "failed"
|
||||
AllocClientStatusLost = "lost"
|
||||
AllocClientStatusUnknown = "unknown"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
Loading…
Reference in New Issue