From 2566897b06b5ae229214081fa15dbd12caec5cd6 Mon Sep 17 00:00:00 2001 From: Peter Siegmund Date: Sun, 18 Aug 2024 00:55:12 +0200 Subject: [PATCH] fixed preficates for routes Signed-off-by: Peter Siegmund --- src/main/resources/application.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/application.yaml b/src/main/resources/application.yaml index 9c2b01d..44a55cc 100644 --- a/src/main/resources/application.yaml +++ b/src/main/resources/application.yaml @@ -31,7 +31,6 @@ spring: - id: timezone-service uri: ${TIMEZONE_SERVICE_URI:http://timezone-service} predicates: - - Path=/v1/timezone - Path=/v1/timezone/** filters: - name: GCPGatewayFilter @@ -41,7 +40,8 @@ spring: - id: backend-service uri: ${BACKEND_SERVICE_URI:http://backend-service} predicates: - - Path=/v1/** + - Path=/v1/account/** + - Path=/v1/token/** filters: #- AuthGatewayFilter - name: GCPGatewayFilter