fixed misleading error message

pull/516/head
Justin Richer 2013-09-10 13:46:49 -04:00
parent b9da10d176
commit ded7c66c78
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}
}