Prevent warmserver from blocking the port from being attached (#16150)

Co-authored-by: Chiedo <chiedo@users.noreply.github.com>
This commit is contained in:
Chiedo John 2020-10-21 10:26:50 -04:00 коммит произвёл GitHub
Родитель 2cf68d7640
Коммит 8a26395e79
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -17,7 +17,7 @@ if (!module.parent) {
portUsed.check(port).then(async status => {
if (status === false) {
// If in production, warm the server at the start
if (process.env.NODE_ENV === 'production') await warmServer()
if (process.env.NODE_ENV === 'production') warmServer()
// workaround for https://github.com/expressjs/express/issues/1101
const server = require('http').createServer(app)