From 98328dee2dfde68eee0bba63972827e8f50f111e Mon Sep 17 00:00:00 2001 From: Julian Horner <julianhorner@web.de> Date: Fri, 3 Jan 2020 18:20:28 +0100 Subject: [PATCH] Add configuration to avoid errors before complete startup --- src/main/resources/application.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index a287557..f76594f 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -5,6 +5,8 @@ spring: server.port: 3333 eureka: + instance: + leaseRenewalIntervalInSeconds: 5 client: serviceUrl: defaultZone: http://localhost:8761/eureka/ # URL of the eureka server for registration \ No newline at end of file -- GitLab