From 605a3e881fce4cf46c391c4b1570f19c3a5d1124 Mon Sep 17 00:00:00 2001
From: Julian Horner <julianhorner@web.de>
Date: Fri, 3 Jan 2020 18:21:22 +0100
Subject: [PATCH] Add configuration to avoid errors before complete startup

---
 src/main/resources/application.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml
index 785e287..fd8573f 100644
--- a/src/main/resources/application.yml
+++ b/src/main/resources/application.yml
@@ -7,9 +7,10 @@ server:
 
 eureka:
   client:
+    registryFetchIntervalSeconds: 5
     serviceUrl:
       defaultZone: http://localhost:8761/eureka/ # URL of the eureka server for registration
-      
+            
 zuul:
   ignoredPatterns: /login/** # The login path is served by the api-gateway directly
   ignored-services: "*"
-- 
GitLab