Merge remote-tracking branch 'origin/support/2.48.x' into support/3.6.0

This commit is contained in:
René Pfeuffer
2025-01-17 18:35:50 +01:00
3 changed files with 16 additions and 16 deletions

View File

@@ -56,9 +56,7 @@ class ApiKeyTokenHandler {
return of(OBJECT_MAPPER.readValue(decoder.decode(token), Token.class));
} catch (IOException | DecodingException e) {
LOG.debug("failed to read api token, perhaps it is a jwt token or a normal password");
if (LOG.isTraceEnabled()) {
LOG.trace("failed to parse token", e);
}
// do not print the exception here, because it could reveal password details
return empty();
}
}