From 24e916d37fbea209229caf5b3cbc3cd639d1ab63 Mon Sep 17 00:00:00 2001 From: John Spray Date: Fri, 2 Feb 2024 10:35:09 +0000 Subject: [PATCH] pageserver: fix a syntax error in swagger (#6566) A description was written as a follow-on to a section line, rather than in the proper `description:` part. This caused swagger parsers to rightly reject it. --- pageserver/src/http/openapi_spec.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pageserver/src/http/openapi_spec.yml b/pageserver/src/http/openapi_spec.yml index e2a2865145..3694385cab 100644 --- a/pageserver/src/http/openapi_spec.yml +++ b/pageserver/src/http/openapi_spec.yml @@ -1443,7 +1443,8 @@ components: node_id: description: Pageserver node ID where this shard is attached type: integer - shard_id: Tenant shard ID of the shard + shard_id: + description: Tenant shard ID of the shard type: string SecondaryConfig: type: object