Merged in feat/cleanup-logs (pull request #3141)

feat(logs): cleanup of token expired logs

* feat(logs): cleanup of token expired logs


Approved-by: Matilda Landström
This commit is contained in:
Linus Flood
2025-11-12 14:52:56 +00:00
parent f04fc46ba0
commit 3a45e6cfe3
2 changed files with 0 additions and 2 deletions

View File

@@ -24,7 +24,6 @@ export const getVerifiedUser = cache(
const now = Date.now()
if (token.expires_at && token.expires_at < now) {
metricsGetVerifiedUser.dataError(`Token expired`)
throw sessionExpiredError()
}