From 7edfe1581ad81ebe84ef228eac4f115a368b3144 Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Sun, 12 Sep 2021 22:52:31 +0300 Subject: [PATCH] Raise slow query log threshold to 250ms --- backend/ormconfig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/ormconfig.js b/backend/ormconfig.js index 52195abb..c1cad669 100644 --- a/backend/ormconfig.js +++ b/backend/ormconfig.js @@ -34,7 +34,7 @@ module.exports = { connectTimeout: 2000, logging: ["error", "warn"], - maxQueryExecutionTime: 150, + maxQueryExecutionTime: 250, // Entities entities: [entities],