mirror of
https://github.com/jambonz/jambonz-feature-server.git
synced 2025-12-20 16:50:39 +00:00
bugfix: ws error max connections error causes a crash
This commit is contained in:
@@ -69,7 +69,7 @@ class WsRequestor extends BaseRequestor {
|
|||||||
this.connectInProgress = true;
|
this.connectInProgress = true;
|
||||||
this.logger.debug(`WsRequestor:request(${this.id}) - connecting since we do not have a connection`);
|
this.logger.debug(`WsRequestor:request(${this.id}) - connecting since we do not have a connection`);
|
||||||
if (this.connections >= MAX_RECONNECTS) {
|
if (this.connections >= MAX_RECONNECTS) {
|
||||||
throw new Error(`max attempts connecting to ${this.url}`);
|
return Promise.reject(`max attempts connecting to ${this.url}`);
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
const startAt = process.hrtime();
|
const startAt = process.hrtime();
|
||||||
@@ -79,7 +79,7 @@ class WsRequestor extends BaseRequestor {
|
|||||||
} catch (err) {
|
} catch (err) {
|
||||||
this.logger.info({url, err}, 'WsRequestor:request - failed connecting');
|
this.logger.info({url, err}, 'WsRequestor:request - failed connecting');
|
||||||
this.connectInProgress = false;
|
this.connectInProgress = false;
|
||||||
throw err;
|
return Promise.reject(err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
assert(this.ws);
|
assert(this.ws);
|
||||||
|
|||||||
Reference in New Issue
Block a user