fixed misleading error message
parent
b9da10d176
commit
ded7c66c78
|
@ -66,7 +66,7 @@ public class OIDCAuthenticationProvider implements AuthenticationProvider {
|
||||||
} else {
|
} else {
|
||||||
if (!Strings.isNullOrEmpty(userInfo.getSub()) && !userInfo.getSub().equals(token.getSub())) {
|
if (!Strings.isNullOrEmpty(userInfo.getSub()) && !userInfo.getSub().equals(token.getSub())) {
|
||||||
// the userinfo came back and the user_id fields don't match what was in the id_token
|
// the userinfo came back and the user_id fields don't match what was in the id_token
|
||||||
throw new UsernameNotFoundException("user_id mismatch between id_token and user_info call: " + userInfo.getSub() + " / " + token.getSub());
|
throw new UsernameNotFoundException("user_id mismatch between id_token and user_info call: " + token.getSub() + " / " + userInfo.getSub());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue