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