Merge pull request #506 from Flowdalic/gssapi-no-password

Prevent password enforcement for SASL GSSAPI
This commit is contained in:
Florian Schmaus 2021-12-21 13:37:31 +01:00 committed by GitHub
commit 178e82a3aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -66,4 +66,8 @@ public class SASLGSSAPIMechanism extends SASLJavaXMechanism {
return new SASLGSSAPIMechanism();
}
@Override
public boolean requiresPassword() {
return false;
}
}