fix: increase timeout (#3120)

Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
This commit is contained in:
Jonas Höbenreich
2024-09-12 15:35:12 +02:00
committed by GitHub
parent 1e2fe7b066
commit 29131f93c2

View File

@@ -77,7 +77,7 @@ async function runMigration(): Promise<void> {
console.log(`Data migration completed. Total time: ${((endTime - startTime) / 1000).toString()}s`);
},
{
timeout: 180000, // 3 minutes
timeout: 900000, // 15 minutes
}
);
}