# HG changeset patch # User Roman Arutyunyan # Date 1582908853 -10800 # Node ID 1d207b77b44a9081fc761d42438a8eab0607b3bb # Parent b4dbf8b98f9a781ed3bf611ed3bd65cd1e05179a Simplified subrequest finalization. Now it looks similar to what it was before background subrequests were introduced in 9552758a786e. diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -2488,7 +2488,6 @@ ngx_http_finalize_request(ngx_http_reque } if (r != r->main) { - clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); if (r->buffered || r->postponed) { @@ -2499,8 +2498,14 @@ ngx_http_finalize_request(ngx_http_reque return; } - if (r->background) { + pr = r->parent; + + if (r == c->data || r->background) { + if (!r->logged) { + + clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); + if (clcf->log_subrequest) { ngx_http_log_request(r); } @@ -2514,31 +2519,14 @@ ngx_http_finalize_request(ngx_http_reque } r->done = 1; - ngx_http_finalize_connection(r); - return; - } - - pr = r->parent; - - if (r == c->data) { + + if (r->background) { + ngx_http_finalize_connection(r); + return; + } r->main->count--; - if (!r->logged) { - if (clcf->log_subrequest) { - ngx_http_log_request(r); - } - - r->logged = 1; - - } else { - ngx_log_error(NGX_LOG_ALERT, c->log, 0, - "subrequest: \"%V?%V\" logged again", - &r->uri, &r->args); - } - - r->done = 1; - if (pr->postponed && pr->postponed->request == r) { pr->postponed = pr->postponed->next; }