Bump up nginx controller to 0.7

This commit is contained in:
Manuel de Brito Fontes 2016-05-31 11:44:53 -04:00
parent 6b841edff0
commit 568844913a
3 changed files with 38 additions and 3 deletions

View file

@ -102,7 +102,7 @@ func (ngx *Manager) ReadConfig(config *api.ConfigMap) NginxConfiguration {
for _, i := range strings.Split(val, ",") {
j, err := strconv.Atoi(i)
if err != nil {
glog.Warningf("%v is not a valid http code", i)
glog.Warningf("%v is not a valid http code: %v", i, err)
} else {
cErrors = append(cErrors, j)
}