Fix typos in KubernetesAuthentication.

Closes gh-669
This commit is contained in:
fivesmallq
2021-11-16 17:53:15 +08:00
committed by Mark Paluch
parent 2f7f51398c
commit fb6e630649

View File

@@ -108,7 +108,7 @@ public class KubernetesAuthentication implements ClientAuthentication, Authentic
private static Map<String, String> getKubernetesLogin(String role, String jwt) {
Assert.hasText(role, "Role must not be empty");
Assert.hasText(role, "JWT must not be empty");
Assert.hasText(jwt, "JWT must not be empty");
Map<String, String> login = new HashMap<>();