This commit is contained in:
Steve Faulkner 2019-08-07 09:05:34 -05:00 коммит произвёл GitHub
Родитель af1f27d71e
Коммит b6185277e0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 10 добавлений и 2 удалений

3
.vscode/settings.json поставляемый
Просмотреть файл

@ -1,5 +1,6 @@
{
"mocha.files.glob":"test/legacy/**/*.js",
"editor.formatOnSave": true,
"typescript.tsdk": "node_modules/typescript/lib"
"typescript.tsdk": "node_modules/typescript/lib",
"workbench.colorCustomizations": {}
}

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

@ -74,6 +74,12 @@ const WindowsNoRouteTohost = 10065;
*/
const LinuxConnectionReset = "ECONNRESET";
// Node Error Codes
/**
* @ignore
*/
const BrokenPipe = "EPIPE";
/**
* @ignore
*/
@ -94,7 +100,8 @@ const CONNECTION_ERROR_CODES = [
WindowsHostIsDown,
WindowsNoRouteTohost,
LinuxConnectionReset,
TimeoutErrorCode
TimeoutErrorCode,
BrokenPipe
];
/**