From 4ceed6eb2f487899b19fade9cad01e5e8aaa7673 Mon Sep 17 00:00:00 2001
From: Tom Deseyn <tom.deseyn@gmail.com>
Date: Wed, 7 Apr 2021 15:23:13 +0200
Subject: [PATCH] Update swagger-check

Signed-off-by: Tom Deseyn <tom.deseyn@gmail.com>
---
 hack/swagger-check | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/hack/swagger-check b/hack/swagger-check
index 646cbcb84e..fc280c02db 100755
--- a/hack/swagger-check
+++ b/hack/swagger-check
@@ -178,9 +178,10 @@ sub handle_handle {
         or die "$ME: $path:$.: Cannot grok '$line'\n";
     my $endpoint = $1;
 
-    # FIXME: in older code, '{name:..*}' meant 'nameOrID'. As of 2020-02
-    # it looks like most of the '{name:..*}' entries are gone, except for one.
-###FIXME-obsolete?    $endpoint =~ s|\{name:\.\.\*\}|{nameOrID}|;
+    # Some function declarations require an argument of the form '{name:.*}'
+    # but the swagger (which gets derived from the comments) should not
+    # include them. Normalize all such args to just '{name}'.
+    $endpoint =~ s/\{name:\.\*\}/\{name\}/;
 
     # e.g. /auth, /containers/*/rename, /distribution, /monitor, /plugins
     return 1 if $line =~ /\.UnsupportedHandler/;