bug 1523104: remote: use fatal error when unable to start HTTPD; r=ochameau

This commit is contained in:
Andreas Tolfsen 2019-03-07 22:13:18 +00:00
Родитель 1cdc94f9fd
Коммит 48136e31bd
1 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

@ -170,11 +170,10 @@ class ParentRemoteAgent {
try {
this.listen(addr);
} catch ({message}) {
} catch (e) {
this.close();
log.fatal(`Unable to start remote agent on ${addr.spec}: ${message}`);
cmdLine.preventDefault = true;
}
throw new FatalError(`Unable to start remote agent on ${addr.spec}: ${e.message}`, e);
}
}
get helpInfo() {