Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: zalando/skipper
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d32f5f367fe72ca2a3781fba579f1a8963a7e412
Choose a base ref
..
head repository: zalando/skipper
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 45183e62949c2d37e4acfc71901cb7d0da17da54
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 filters/openpolicyagent/openpolicyagent.go
2 changes: 1 addition & 1 deletion filters/openpolicyagent/openpolicyagent.go
Original file line number Diff line number Diff line change
@@ -839,7 +839,7 @@ func handleStatusErrors(
}
code, err := status.HTTPCode.Int64()
if err == nil && code >= 400 && code < 500 && !isTemporaryError(code) {
// Fail for error codes in the range 400-500 excluding temporary errors
//Fail for error codes in the range 400-500 excluding temporary errors
failed <- formatStatusError(prefix, status)
return
}