diff src/http/v3/ngx_http_v3_filter_module.c @ 8618:6a383020d61e quic

HTTP/3: make ngx_http_log_error() static again. This function was only referenced from ngx_http_v3_create_push_request() to initialize push connection log. Now the log handler is copied from the parent request connection. The change reduces diff to the default branch.
author Roman Arutyunyan <arut@nginx.com>
date Fri, 17 Sep 2021 16:32:23 +0300
parents 8fc9c7f2c533
children 3fdf0afd5d45
line wrap: on
line diff
--- a/src/http/v3/ngx_http_v3_filter_module.c
+++ b/src/http/v3/ngx_http_v3_filter_module.c
@@ -917,7 +917,7 @@ ngx_http_v3_create_push_request(ngx_http
     ctx->request = NULL;
     ctx->current_request = NULL;
 
-    c->log->handler = ngx_http_log_error;
+    c->log->handler = pc->log->handler;
     c->log->data = ctx;
     c->log->action = "processing pushed request headers";