From 82949b0accc4891ae878f8280ffecd2d7e74a3d7 Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Thu, 25 Apr 2019 14:08:25 +0000 Subject: [PATCH] fix(static): fix syntax error --- layouts/fastly/helix.vcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/fastly/helix.vcl b/layouts/fastly/helix.vcl index fa70cf74..b3cccd00 100644 --- a/layouts/fastly/helix.vcl +++ b/layouts/fastly/helix.vcl @@ -550,7 +550,7 @@ sub hlx_fetch_static { sub hlx_deliver_static { set resp.http.X-Static-Trace = req.http.X-Trace + "; hlx_deliver_static"; - set resp.http.X-Static-Trace = set resp.http.X-Static-Trace + "[type=" + req.http.X-Request-Type + ", status=" + resp.status + "]"; + set resp.http.X-Static-Trace = resp.http.X-Static-Trace + "[type=" + req.http.X-Request-Type + ", status=" + resp.status + "]"; if (req.http.X-Request-Type == "Static-ESI" && resp.status == 200) { set resp.http.X-Trace = resp.http.X-Trace + "(esi)"; # Get the ETag response header and use it to construct a stable URL