From 8000a26aad2e21c8e34f580bf43a38e93e44ed06 Mon Sep 17 00:00:00 2001 From: Peter Siegmund Date: Wed, 30 Oct 2024 19:22:22 +0100 Subject: [PATCH] reactivate testing Signed-off-by: Peter Siegmund --- src/main/resources/bootstrap.yml | 2 +- src/test/resources/bootstrap.yml | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 src/test/resources/bootstrap.yml diff --git a/src/main/resources/bootstrap.yml b/src/main/resources/bootstrap.yml index d31e1d2..052fe90 100644 --- a/src/main/resources/bootstrap.yml +++ b/src/main/resources/bootstrap.yml @@ -1,7 +1,7 @@ eureka: client: - register-with-eureka: true fetch-registry: true + register-with-eureka: true service-url: defaultZone: ${EUREKA} diff --git a/src/test/resources/bootstrap.yml b/src/test/resources/bootstrap.yml new file mode 100644 index 0000000..93929ab --- /dev/null +++ b/src/test/resources/bootstrap.yml @@ -0,0 +1,10 @@ +eureka: + client: + enabled: false + +spring: + application: + name: timezone-service + cloud: + config: + enabled: false