From 49e4c106ea4cd50b200ef0f9c7ab82b20584745b Mon Sep 17 00:00:00 2001 From: Julian Horner <julianhorner@web.de> Date: Fri, 3 Jan 2020 18:21:06 +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 5186bbf..cbe68ec 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -5,6 +5,8 @@ spring: server.port: 4444 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