Skip to content

Commit

Permalink
app: update connection verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
jankapunkt committed Jan 4, 2024
1 parent 6c2321e commit 4344d92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/config.json
@@ -1,5 +1,5 @@
{
"backend": {
"url": "ws://192.168.178.24:8000/websocket"
"url": "ws://192.168.178.46:8000/websocket"
}
}
}
4 changes: 2 additions & 2 deletions app/src/hooks/useConnection.js
Expand Up @@ -5,7 +5,7 @@ import config from '../../config.json'
import { createLog } from '../infrastructure/log/Log'

// get detailed info about internals
Meteor.isVerbose = true
Meteor.enableVerbose()

// connect with Meteor and use a secure store
// to persist our received login token, so it's encrypted
Expand All @@ -19,7 +19,7 @@ Meteor.connect(config.backend.url, {
},
autoConnect: true,
autoReconnect: true,
reconnectInterval: 500
reconnectInterval: 1500
})

/**
Expand Down

0 comments on commit 4344d92

Please sign in to comment.