From 8b5e919da2a8dab40b09e67dcfd5b3819580e39b Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 16 Apr 2020 20:33:50 +0200 Subject: [PATCH] Remove giving up on errors --- build/Varnish/varnish.vcl | 3 --- 1 file changed, 3 deletions(-) diff --git a/build/Varnish/varnish.vcl b/build/Varnish/varnish.vcl index 99d67b8..30ce542 100644 --- a/build/Varnish/varnish.vcl +++ b/build/Varnish/varnish.vcl @@ -51,9 +51,6 @@ sub vcl_pipe { return (pipe); } sub vcl_backend_response { - if (beresp.status == 500 || beresp.status == 502 || beresp.status == 503 || beresp.status == 504) { - return (abandon); - } if (beresp.http.Cache-Control ~ "public") { return (deliver); }