1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-01-18 05:18:24 +02:00

fix: correct typo in log message (#3439)

Closes #3438
This commit is contained in:
Nikolay Grechanov 2022-01-19 08:41:11 +01:00 committed by GitHub
parent c97625e840
commit 17510f8996
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -212,7 +212,7 @@ func resolveVaultCredentials(config *StepConfig, client vaultClient) {
credPath, pathOk := config.Config[vaultCredentialPath].(string)
keys := getCredentialKeys(config)
if !(pathOk && keys != nil) || credPath == "" || len(keys) == 0 {
log.Entry().Debugf("Not fetching test credentials from vault since they are not (properly) configured")
log.Entry().Debugf("Not fetching credentials from vault since they are not (properly) configured")
return
}