()
| 752 | } |
| 753 | |
| 754 | func (k *AuthKerberosClientConfig) Validate() error { |
| 755 | if _, err := os.Stat(k.Keytab); err != nil { |
| 756 | return wrapWithMessage(err, "keytab file %s does not exist or is inaccessible", k.Keytab) |
| 757 | } |
| 758 | return nil |
| 759 | } |
| 760 | |
| 761 | // endregion |
nothing calls this directly
no test coverage detected