diff options
Diffstat (limited to 'src/http/ngx_http_core_module.c')
-rw-r--r-- | src/http/ngx_http_core_module.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index b417f41c6..ee0d3ca92 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -1162,6 +1162,7 @@ ngx_http_subrequest(ngx_http_request_t *r, { ngx_connection_t *c; ngx_http_request_t *sr; + ngx_http_log_ctx_t *ctx; ngx_http_core_srv_conf_t *cscf; ngx_http_postponed_request_t *pr, *p; @@ -1273,6 +1274,9 @@ ngx_http_subrequest(ngx_http_request_t *r, r->postponed = pr; } + ctx = c->log->data; + ctx->current_request = sr; + sr->internal = 1; sr->fast_subrequest = 1; |