Skip warm server when starting staging (#16978)

This commit is contained in:
Kevin Heis 2020-12-15 11:22:06 -08:00 коммит произвёл GitHub
Родитель 85ddb82fe8
Коммит a66fc72944
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 4 удалений

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

@ -21,10 +21,6 @@ if (!module.parent) {
// If in a true production environment, wait for the cache to be fully warmed.
if (process.env.HEROKU_PRODUCTION_APP || process.env.GITHUB_ACTIONS) {
await warmServer()
} else {
// If not in a true production environment, don't wait for the cache to be fully warmed.
// This avoids deployment timeouts in environments with slower servers.
warmServer()
}
}