Rename a function parameter name in authn.go

pull/6/head
Manjunath A Kumatagi 2016-05-06 02:48:10 -04:00
parent 9a1b2540b0
commit 00be597618
1 changed files with 2 additions and 2 deletions

View File

@ -179,8 +179,8 @@ func newAuthenticatorFromClientCAFile(clientCAFile string) (authenticator.Reques
} }
// newAuthenticatorFromTokenFile returns an authenticator.Request or an error // newAuthenticatorFromTokenFile returns an authenticator.Request or an error
func newAuthenticatorFromKeystoneURL(keystoneConfigFile string) (authenticator.Request, error) { func newAuthenticatorFromKeystoneURL(keystoneURL string) (authenticator.Request, error) {
keystoneAuthenticator, err := keystone.NewKeystoneAuthenticator(keystoneConfigFile) keystoneAuthenticator, err := keystone.NewKeystoneAuthenticator(keystoneURL)
if err != nil { if err != nil {
return nil, err return nil, err
} }