From 59a7a2908cf99135b78f4368ed1f6ed6d1e4f620 Mon Sep 17 00:00:00 2001 From: Fedor Dudinskiy Date: Fri, 14 Jul 2023 13:30:18 +0200 Subject: [PATCH] Force Openapi to use non-management interface Due to a change[1] made upstream OpenAPI is now deployed on management interface by default. This breaks our tests, so we should use an option to disable this behavior (and verify, that this option works). [1] https://github.com/quarkusio/quarkus/issues/34353 --- http/management/src/main/resources/application.properties | 1 + 1 file changed, 1 insertion(+) diff --git a/http/management/src/main/resources/application.properties b/http/management/src/main/resources/application.properties index ac943493f..7b74dc662 100644 --- a/http/management/src/main/resources/application.properties +++ b/http/management/src/main/resources/application.properties @@ -1,3 +1,4 @@ # Only run tests annotated with @QuarkusTest quarkus.test.type=quarkus-test quarkus.management.enabled=true +quarkus.smallrye-openapi.management.enabled=false