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:
sejalapeno 2023-06-27 00:03:29 +05:30 committed by GitHub
parent 649831c1d3
commit 4c6906d873
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

3
.changelog/17726.txt Normal file
View File

@ -0,0 +1,3 @@
```release-note:bug
api: add missing constant for unknown allocation status
```

View File

@ -30,6 +30,7 @@ const (
AllocClientStatusComplete = "complete"
AllocClientStatusFailed = "failed"
AllocClientStatusLost = "lost"
AllocClientStatusUnknown = "unknown"
)
const (