Skip to content

Commit

Permalink
Merge pull request #2681 from AdamDang/patch-4
Browse files Browse the repository at this point in the history
Typo fix in error message: encounted->encountered
  • Loading branch information
k8s-ci-robot authored Jun 22, 2018
2 parents 700a227 + 56b74d9 commit 0dbc9a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/ingress/controller/template/configmap.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ func ReadConfig(src map[string]string) config.Configuration {
delete(conf, proxyHeaderTimeout)
duration, err := time.ParseDuration(val)
if err != nil {
glog.Warningf("proxy-protocol-header-timeout of %v encounted an error while being parsed %v. Switching to use default value instead.", val, err)
glog.Warningf("proxy-protocol-header-timeout of %v encountered an error while being parsed %v. Switching to use default value instead.", val, err)
} else {
to.ProxyProtocolHeaderTimeout = duration
}
Expand Down

0 comments on commit 0dbc9a2

Please sign in to comment.