Lower reconnection delay for websocket

This commit is contained in:
Eliot Berriot 2018-12-20 14:31:56 +01:00
parent d6573e5d37
commit e1e6a73a79
No known key found for this signature in database
GPG Key ID: DD6965E2476E5C27
1 changed files with 1 additions and 1 deletions

View File

@ -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)
})