cliconfig: Fix error message about invalid credentials helper type

pull/29674/head
Zach Whaley 5 years ago committed by GitHub
parent f93f16824c
commit c9a5fdb366
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -46,7 +46,7 @@ func (c *Config) CredentialsSource(helperPlugins pluginDiscovery.PluginMetaSet)
for givenType, givenConfig := range c.CredentialsHelpers {
available := helperPlugins.WithName(givenType)
if available.Count() == 0 {
log.Printf("[ERROR] Unable to find credentials helper %q; ignoring", helperType)
log.Printf("[ERROR] Unable to find credentials helper %q; ignoring", givenType)
break
}

Loading…
Cancel
Save