Skip to content

Commit

Permalink
Fix scope issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrunesson committed May 11, 2019
1 parent 528f27a commit 3ee0ce5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/bettercloud/vault/api/Auth.java
Original file line number Diff line number Diff line change
Expand Up @@ -982,7 +982,7 @@ public AuthResponse loginByGCP(final String role, final String jwt) throws Vault
* @return The auth token, with additional response metadata
* @throws VaultException If any error occurs, or unexpected response received from Vault
*/
private AuthResponse loginByKubernetes(final String role, final String jwt) throws VaultException {
public AuthResponse loginByKubernetes(final String role, final String jwt) throws VaultException {
return loginByJwt("kubernetes", role, jwt);
}

Expand Down

0 comments on commit 3ee0ce5

Please sign in to comment.