fixed misleading error message

pull/516/head
Justin Richer 11 years ago
parent b9da10d176
commit ded7c66c78

@ -66,7 +66,7 @@ public class OIDCAuthenticationProvider implements AuthenticationProvider {
} else {
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
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…
Cancel
Save