fix(scheduler): change session expiration check interval to 30 seconds from 1ms

Increase interval for checking protected session expiration from 1ms to 30s.
This commit is contained in:
Jon Fuller 2025-10-22 11:20:14 -07:00 committed by GitHub
parent 704f2c2238
commit 968b595aec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -66,7 +66,7 @@ sqlInit.dbReady.then(() => {
);
}
setInterval(() => checkProtectedSessionExpiration(), 1);
setInterval(() => checkProtectedSessionExpiration(), 30000);
});
function checkProtectedSessionExpiration() {