You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RemoteJWKSet use synchronized for synchronization.
But this will suspend the carrier thread.
In some specific situations, it may cause the server to hang:
single carrier thread.(Single core CPU). And call itself to retrieve jwk.
RemoteJWKSet is deprecated. Should we replace it with JwkSourceBuilder?
SpringBoot: 3.3.1
Java: Temurin-21.0.4+7
The text was updated successfully, but these errors were encountered:
Hi @rwinch, in this issue we need to replace the old jose api with a new one. This is not a very simple issue, for example JWKSetCache is now deprecated, and it is needed for JwkSourceBuilder. I can think about how to solve this issue.
RemoteJWKSet use synchronized for synchronization.
But this will suspend the carrier thread.
In some specific situations, it may cause the server to hang:
single carrier thread.(Single core CPU). And call itself to retrieve jwk
.RemoteJWKSet is deprecated
. Should we replace it withJwkSourceBuilder
?The text was updated successfully, but these errors were encountered: