From e1e6a73a79b471d03b15917c42d87dfee6bcb417 Mon Sep 17 00:00:00 2001
From: Eliot Berriot <contact@eliotberriot.com>
Date: Thu, 20 Dec 2018 14:31:56 +0100
Subject: [PATCH] Lower reconnection delay for websocket

---
 front/src/App.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/front/src/App.vue b/front/src/App.vue
index d61e5a83..ed78005e 100644
--- a/front/src/App.vue
+++ b/front/src/App.vue
@@ -167,7 +167,7 @@ export default {
       bridge.connect(
         url,
         null,
-        {reconnectInterval: 5000})
+        {reconnectInterval: 1000 * 60})
       bridge.listen(function (event) {
         self.$store.dispatch('ui/websocketEvent', event)
       })
-- 
GitLab