Increase check update timeout to 15s (#20998)

This commit is contained in:
Paul Bottein 2024-06-05 10:13:28 +02:00 committed by GitHub
parent 9ef0bd6e46
commit 74eca6b1f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -144,7 +144,7 @@ export const checkForEntityUpdates = async (
// there is no reliable way to know if all the updates are done updating, so we just wait a bit for now...
await new Promise((r) => {
setTimeout(r, 10000);
setTimeout(r, 15000);
});
unsubscribeEvents();