Fix ignored return code in ps_simple_handler() (#1468)

Fix for https://github.com/pagespeed/ngx_pagespeed/issues/1465
This commit is contained in:
Otto van der Schaaf
2017-09-11 21:11:50 +02:00
committed by GitHub
parent 65761a2393
commit 4d9e5fcb0c
+1 -2
View File
@@ -2704,8 +2704,7 @@ ngx_int_t ps_simple_handler(ngx_http_request_t* r,
}
}
send_out_headers_and_body(r, response_headers, output);
return NGX_OK;
return send_out_headers_and_body(r, response_headers, output);
}
void ps_beacon_handler_helper(ngx_http_request_t* r,