Skip to content

Commit

Permalink
Merge pull request kubernetes#25249 from mkumatag/typo_fix
Browse files Browse the repository at this point in the history
Rename a function parameter name in authn.go
  • Loading branch information
fabioy committed May 11, 2016
2 parents 05cfd9c + 00be597 commit 6071540
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/apiserver/authenticator/authn.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ func newAuthenticatorFromClientCAFile(clientCAFile string) (authenticator.Reques
}

// newAuthenticatorFromTokenFile returns an authenticator.Request or an error
func newAuthenticatorFromKeystoneURL(keystoneConfigFile string) (authenticator.Request, error) {
keystoneAuthenticator, err := keystone.NewKeystoneAuthenticator(keystoneConfigFile)
func newAuthenticatorFromKeystoneURL(keystoneURL string) (authenticator.Request, error) {
keystoneAuthenticator, err := keystone.NewKeystoneAuthenticator(keystoneURL)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 6071540

Please sign in to comment.