Compare commits

...

2 Commits

Author SHA1 Message Date
1e0a93a9f1
Merge pull request #6 from fatchan/5-connection-leak
Add missing call to ngx_http_finalize_request(), seems to be the solu…
2021-03-26 19:53:45 -04:00
Thomas Lynch
15681a03ef Add missing call to ngx_http_finalize_request(), seems to be the solution close #5 2021-03-26 18:00:48 +11:00

View File

@ -235,6 +235,7 @@ int serve_challenge(ngx_http_request_t *r, const char *challenge, const char *ht
ngx_http_send_header(r);
ngx_http_output_filter(r, &out);
ngx_http_finalize_request(r, 0);
return NGX_DONE;
}