Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Kong/ngx_wasm_module
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a944270e182c4f9865879a04d89871f93e6909ca
Choose a base ref
..
head repository: Kong/ngx_wasm_module
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 72960d761837317ebc3a03f6eca9ba73617c5246
Choose a head ref
Showing with 2 additions and 0 deletions.
  1. +2 −0 src/http/proxy_wasm/ngx_http_proxy_wasm.c
2 changes: 2 additions & 0 deletions src/http/proxy_wasm/ngx_http_proxy_wasm.c
Original file line number Diff line number Diff line change
@@ -389,6 +389,7 @@ ngx_http_proxy_wasm_ctx(void *data)
/* for on_request_body retrieval */
rctx->data = pwctx;

#if 0
if (rctx->fake_request) {
cln = ngx_pool_cleanup_add(pwctx->parent_pool, 0);
if (cln == NULL) {
@@ -398,6 +399,7 @@ ngx_http_proxy_wasm_ctx(void *data)
cln->handler = ngx_http_proxy_wasm_ctx_cleanup_handler;
cln->data = pwctx;
}
#endif
}

return pwctx;