Blame SOURCES/bz2044409-01-fix-backend-parameter-all-in-cluster-destroy.patch

b75106
From fa75f40361bc39cbd645b8014713e4c0ad0cda18 Mon Sep 17 00:00:00 2001
b75106
From: Ivan Devat <idevat@redhat.com>
b75106
Date: Mon, 24 Jan 2022 14:08:54 +0100
b75106
Subject: [PATCH 2/2] fix backend parameter "all" in cluster destroy
b75106
b75106
---
b75106
 src/app/backend/calls/destroyCluster.ts | 2 +-
b75106
 1 file changed, 1 insertion(+), 1 deletion(-)
b75106
b75106
diff --git a/src/app/backend/calls/destroyCluster.ts b/src/app/backend/calls/destroyCluster.ts
b75106
index b6e83a41..cf41ea42 100644
b75106
--- a/src/app/backend/calls/destroyCluster.ts
b75106
+++ b/src/app/backend/calls/destroyCluster.ts
b75106
@@ -4,5 +4,5 @@ const { url } = endpoints.destroyCluster;
b75106
 
b75106
 export const destroyCluster = (clusterName: string): CallResult =>
b75106
   http.post(url({ clusterName }), {
b75106
-    params: [["--all", "1"]],
b75106
+    params: [["all", "1"]],
b75106
   });
b75106
-- 
b75106
2.31.1
b75106