зеркало из https://github.com/mozilla/gecko-dev.git
bug 1523104: remote: use fatal error when unable to start HTTPD; r=ochameau
This commit is contained in:
Родитель
1cdc94f9fd
Коммит
48136e31bd
|
@ -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() {
|
||||
|
|
Загрузка…
Ссылка в новой задаче