From 4fe577a1ff582c559f8b2fd74630b22599361bea Mon Sep 17 00:00:00 2001 From: MoritzWeber Date: Thu, 28 Sep 2023 18:20:47 +0200 Subject: [PATCH] fix(config): Also allow number as type for port --- backend/capellacollab/config/config_schema.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/capellacollab/config/config_schema.yaml b/backend/capellacollab/config/config_schema.yaml index abf219e1a7..f13087bedf 100644 --- a/backend/capellacollab/config/config_schema.yaml +++ b/backend/capellacollab/config/config_schema.yaml @@ -111,7 +111,7 @@ properties: host: type: string port: - type: string + type: ["number", "string"] scheme: type: string metadata: