From 56ce1f3b3fc13afb5ec06d42b478a63e5fc56375 Mon Sep 17 00:00:00 2001 From: sejalapeno <110482301+sejalapeno@users.noreply.github.com> Date: Mon, 26 Jun 2023 17:26:49 +0530 Subject: [PATCH 1/3] Update allocations.go updated missing client status "unknown" #17688 --- api/allocations.go | 1 + 1 file changed, 1 insertion(+) diff --git a/api/allocations.go b/api/allocations.go index 1cf66aba0589..3ec147f21c83 100644 --- a/api/allocations.go +++ b/api/allocations.go @@ -30,6 +30,7 @@ const ( AllocClientStatusComplete = "complete" AllocClientStatusFailed = "failed" AllocClientStatusLost = "lost" + AllocClientStatusUnknown = "unknown" ) const ( From 4e7a9ac4696a3fa7ba16080176808c12ed753c5a Mon Sep 17 00:00:00 2001 From: sejalapeno <110482301+sejalapeno@users.noreply.github.com> Date: Mon, 26 Jun 2023 17:11:46 +0000 Subject: [PATCH 2/3] changelog --- .changelog/17726.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .changelog/17726.txt diff --git a/.changelog/17726.txt b/.changelog/17726.txt new file mode 100644 index 000000000000..7036e3e8e666 --- /dev/null +++ b/.changelog/17726.txt @@ -0,0 +1,3 @@ +```release-note:bug +build: Added make target for creating changelog entries +``` From 7f446e6f4d8923ee9398748da523cd2316ce540f Mon Sep 17 00:00:00 2001 From: sejalapeno <110482301+sejalapeno@users.noreply.github.com> Date: Mon, 26 Jun 2023 22:49:37 +0530 Subject: [PATCH 3/3] Update .changelog/17726.txt adding relevant desc. Co-authored-by: Seth Hoenig --- .changelog/17726.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changelog/17726.txt b/.changelog/17726.txt index 7036e3e8e666..e122be8be26a 100644 --- a/.changelog/17726.txt +++ b/.changelog/17726.txt @@ -1,3 +1,3 @@ ```release-note:bug -build: Added make target for creating changelog entries +api: add missing constant for unknown allocation status ```