Skip to content
This repository has been archived by the owner on Feb 25, 2022. It is now read-only.

Commit

Permalink
fix(vcl): fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
trieloff committed May 29, 2019
1 parent ebf0807 commit d8afe05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layouts/fastly/helix.vcl
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ sub hlx_deliver_pipeline {
# not found, ergo restart as Static
set req.http.X-Request-Type = "Static";
restart;
} elseif {
} else {
set req.http.X-Trace = req.http.X-Trace + "(error)";
set req.url = resp.status + "." _ req.url.ext; // fall back to 500.html
set req.http.X-Request-Type = "Error";
Expand Down

0 comments on commit d8afe05

Please sign in to comment.