From 69d7407afbe76eb7553b84193f93281b9c5ce904 Mon Sep 17 00:00:00 2001 From: Niall Crowe Date: Wed, 27 Jul 2022 23:16:57 +0100 Subject: switch from "kube/play" endpoint to "play/kube" endpoint. When podman kube play was added the endpoint for the kube play/play kube commands was switched from the "play kube" endpoint to the new "kube play" endpoint. This caused issues with the remote client, requiring the need to use the "play kube" endpoint again in order to avoid these issues. Signed-off-by: Niall Crowe --- hack/swagger-check | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hack/swagger-check') diff --git a/hack/swagger-check b/hack/swagger-check index 1e5b95c3a..b4481f5bb 100755 --- a/hack/swagger-check +++ b/hack/swagger-check @@ -320,8 +320,8 @@ sub operation_name { if ($action eq 'df') { $action = 'dataUsage'; } - elsif ($action eq "delete" && $endpoint eq "/libpod/kube/play") { - $action = "PlayDown" + elsif ($action eq "delete" && $endpoint eq "/libpod/play/kube") { + $action = "KubeDown" } # Grrrrrr, this one is annoying: some operations get an extra 'All' elsif ($action =~ /^(delete|get|stats)$/ && $endpoint !~ /\{/) { -- cgit v1.2.3-54-g00ecf