From b28648571850e3d40750455173d387fc08933263 Mon Sep 17 00:00:00 2001 From: Ariel Lahiany Date: Sat, 12 Oct 2024 15:33:35 +0300 Subject: [PATCH] allowedErrorCodes: adds '407 Proxy Authentication Required'. --- config-parser/parsers/http/actions/return.go | 1 + 1 file changed, 1 insertion(+) diff --git a/config-parser/parsers/http/actions/return.go b/config-parser/parsers/http/actions/return.go index cf958dab..5d29dc5c 100644 --- a/config-parser/parsers/http/actions/return.go +++ b/config-parser/parsers/http/actions/return.go @@ -61,6 +61,7 @@ var allowedErrorCodes = map[int64]struct{}{ //nolint:gochecknoglobals 403: {}, 404: {}, 405: {}, + 407: {}, 408: {}, 410: {}, 413: {},