Skip to content

Commit

Permalink
Turns out kerberos expects ticket instead of credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
robsdedude committed Sep 7, 2021
1 parent 1c9d9ef commit 14651ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public TestkitResponse process( TestkitState testkitState )
data.authorizationToken.getTokens().get( "realm" ) );
break;
case "kerberos":
authToken = AuthTokens.kerberos(data.authorizationToken.getTokens().get( "credentials" ));
authToken = AuthTokens.kerberos(data.authorizationToken.getTokens().get( "ticket" ));
break;
default:
return BackendError.builder()
Expand Down

0 comments on commit 14651ba

Please sign in to comment.