Replies: 2 comments 3 replies
-
How about blacklisting the claim with |
Beta Was this translation helpful? Give feedback.
0 replies
-
The claim is integral to the identity solution so we need it in ID tokens sent downstream. It looks like OIDCBlackListedClaims would also remove from the ID token. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We have a claim (roles) in the ID token that is an array of objects and this is triggering a warning on every request as they cannot be parsed.
This means we get a tsunami of warnings since all sessions/tokens contain the same claim structure. If we try to reduce the log levels for this module we miss out on other much more useful warnings.
It kind of goes against principles of log level verbosity where warnings should be infrequent and not on every transaction/request. As I suspect in most cases, just like we have found, if this condition is met its highly likely to be met on all requests.
code reference:
mod_auth_openidc/src/util.c
Line 1625 in 94f832f
Could this please be changed to debug instead of warn?
Beta Was this translation helpful? Give feedback.
All reactions