SFU correctly throwing connection error on KMS misconfig
This commit is contained in:
parent
123ec6f3a3
commit
06ceaef3fe
@ -25,17 +25,21 @@ module.exports = class MediaServer extends EventEmitter {
|
||||
return instance;
|
||||
}
|
||||
|
||||
async init () {
|
||||
try {
|
||||
if (!this._mediaServer) {
|
||||
this._mediaServer = await this._getMediaServerClient(this._serverUri);
|
||||
Logger.info("[mcs-media] Retrieved media server client => " + this._mediaServer);
|
||||
this._monitorConnectionState();
|
||||
init () {
|
||||
return new Promise(async (resolve, reject) => {
|
||||
try {
|
||||
if (!this._mediaServer) {
|
||||
this._mediaServer = await this._getMediaServerClient(this._serverUri);
|
||||
Logger.info("[mcs-media] Retrieved media server client => " + this._mediaServer);
|
||||
this._monitorConnectionState();
|
||||
resolve();
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (err) {
|
||||
this._handleError(err);
|
||||
}
|
||||
catch (err) {
|
||||
this._handleError(err);
|
||||
reject(err);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
_getMediaServerClient (serverUri) {
|
||||
|
Loading…
Reference in New Issue
Block a user