# HG changeset patch # User Roman Arutyunyan # Date 1595020109 -10800 # Node ID b250b515e5b6dfc68172fdb3ad52d341cd225517 # Parent d2f716e668e8f9ace87d3a2358b5bb5697c671ab QUIC: fixed stream read event log. Previously, the main connection log was there. Now it's the stream connection log. diff --git a/src/event/ngx_event_quic.c b/src/event/ngx_event_quic.c --- a/src/event/ngx_event_quic.c +++ b/src/event/ngx_event_quic.c @@ -3892,8 +3892,8 @@ ngx_quic_create_stream(ngx_connection_t sn->c->send = ngx_quic_stream_send; sn->c->send_chain = ngx_quic_stream_send_chain; - sn->c->read->log = c->log; - sn->c->write->log = c->log; + sn->c->read->log = log; + sn->c->write->log = log; log->connection = sn->c->number;