From 4ceed6eb2f487899b19fade9cad01e5e8aaa7673 Mon Sep 17 00:00:00 2001 From: Tom Deseyn Date: Wed, 7 Apr 2021 15:23:13 +0200 Subject: Update swagger-check Signed-off-by: Tom Deseyn --- hack/swagger-check | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'hack/swagger-check') diff --git a/hack/swagger-check b/hack/swagger-check index 646cbcb84..fc280c02d 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/; -- cgit v1.2.3-54-g00ecf