From 9ec4b9f9ae83ec3ad48515994a6b5369f1fd01c1 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Mon, 7 Oct 2024 20:05:37 +0200 Subject: [PATCH 1/2] fix: remove sled (1.0) Signed-off-by: Raito Bezarius --- api/openapi.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/api/openapi.yaml b/api/openapi.yaml index 3075224..0572d5d 100644 --- a/api/openapi.yaml +++ b/api/openapi.yaml @@ -1269,7 +1269,6 @@ components: hostname: neptune garageFeatures: - k2v - - sled - lmdb - sqlite - consul-discovery @@ -1288,7 +1287,6 @@ components: garageFeatures: example: - k2v - - sled - lmdb - sqlite - consul-discovery -- 2.45.2 From 0bb1421ed3e618650f426f4be407c194f64d8289 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Mon, 7 Oct 2024 20:06:00 +0200 Subject: [PATCH 2/2] feat: update the model for the health responses Signed-off-by: Raito Bezarius --- model_get_health_200_response.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/model_get_health_200_response.go b/model_get_health_200_response.go index 3a2032e..6d26344 100644 --- a/model_get_health_200_response.go +++ b/model_get_health_200_response.go @@ -124,7 +124,7 @@ func (o *GetHealth200Response) SetConnectedNodes(v int64) { } // GetStorageNodes returns the StorageNodes field value -func (o *GetHealth200Response) GetStorageNodesAll() int64 { +func (o *GetHealth200Response) GetStorageNodes() int64 { if o == nil { var ret int64 return ret @@ -135,7 +135,7 @@ func (o *GetHealth200Response) GetStorageNodesAll() int64 { // GetStorageNodesOk returns a tuple with the StorageNodes field value // and a boolean to check if the value has been set. -func (o *GetHealth200Response) GetStorageNodesAllOk() (*int64, bool) { +func (o *GetHealth200Response) GetStorageNodesOk() (*int64, bool) { if o == nil { return nil, false } -- 2.45.2