default has to be false

This commit is contained in:
chriss-de 2023-01-26 16:45:48 +01:00
parent 621f8923ca
commit de01686831

View file

@ -35,8 +35,8 @@ func (pie disableProxyInterceptErrors) Parse(ing *networking.Ingress) (interface
// A missing annotation is not a problem, just use the default // A missing annotation is not a problem, just use the default
if err == errors.ErrMissingAnnotations { if err == errors.ErrMissingAnnotations {
return true, nil return false, nil
// default is true and only matters when "custom-http-errors" is also set // default is false
} }
return val, nil return val, nil