Merge branch 'main' of github.com:leanprover-community/lean4game

pull/43/head
Jon Eugster 3 years ago
commit 8dd3c09339

@ -31,7 +31,13 @@ export class Connection {
if (!leanClient.isStarted()) {
leanClient.start()
}
leanClient.restarted(() => { resolve(leanClient) })
leanClient.restarted(() => {
// This keep alive message is not recognized by the server,
// but it makes sure that the websocket connection does not
// time out after 60 seconds.
setInterval(() => {leanClient.sendNotification('$/keepAlive', {}) }, 5000)
resolve(leanClient)
})
}
})
}

Loading…
Cancel
Save