From fe5a531c58f9714bf379962c51d086a14661cfdb Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Sun, 12 Jan 2020 13:34:55 -0700 Subject: http: Fix empty responses Sigh... this is what I get for writing code when I'm tired and sick. See https://github.com/caddyserver/caddy/commit/8be1f0ea668492000cdefbd937e0359bdc24bfc1#r36764627 --- modules/caddyhttp/caddyhttp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/caddyhttp/caddyhttp.go') diff --git a/modules/caddyhttp/caddyhttp.go b/modules/caddyhttp/caddyhttp.go index 7381e51..389a2d2 100644 --- a/modules/caddyhttp/caddyhttp.go +++ b/modules/caddyhttp/caddyhttp.go @@ -172,7 +172,7 @@ func (app *App) Provision(ctx caddy.Context) error { } // pre-compile the handler chain, and be sure to wrap it in our // route handler so that important security checks are done, etc. - srv.primaryHandlerChain = srv.Routes.Compile() + primaryRoute = srv.Routes.Compile() } srv.primaryHandlerChain = srv.wrapPrimaryRoute(primaryRoute) -- cgit v1.2.3