fix(xo-server/proxy.checkHealth): dont return server version

This commit is contained in:
Julien Fontanet 2020-03-02 10:00:52 +01:00 committed by Pierre Donias
parent 6828a5d9a0
commit d21fd2a1ed

View File

@ -227,8 +227,8 @@ export default class Proxy {
await this.checkProxyHealth(id)
}
checkProxyHealth(id) {
return this.callProxyMethod(id, 'system.getServerVersion')
async checkProxyHealth(id) {
await this.callProxyMethod(id, 'system.getServerVersion')
}
async callProxyMethod(id, method, params, expectStream = false) {