Bump db migration query timeout to 900s

This commit is contained in:
Mononaut 2022-11-22 14:25:57 +09:00
parent a32f960c4a
commit 24dba5a2ef
No known key found for this signature in database
GPG Key ID: A3F058E41374C04E

View File

@ -5,7 +5,7 @@ import { Common } from './common';
class DatabaseMigration {
private static currentVersion = 44;
private queryTimeout = 120000;
private queryTimeout = 900_000;
private statisticsAddedIndexed = false;
private uniqueLogs: string[] = [];