# HG changeset patch # User Vladimir Homutov # Date 1642962576 -10800 # Node ID e5509ff0dfd24474674627f198f8465ec259fdda # Parent 077a1e4034466698133d9c51a2c77873aca9c758 QUIC: avoid logging error in case of version negotiation. Previously, "early error" message was logged in this case. diff --git a/src/event/quic/ngx_event_quic_output.c b/src/event/quic/ngx_event_quic_output.c --- a/src/event/quic/ngx_event_quic_output.c +++ b/src/event/quic/ngx_event_quic_output.c @@ -813,7 +813,7 @@ ngx_quic_negotiate_version(ngx_connectio (void) ngx_quic_send(c, buf, len, c->sockaddr, c->socklen); - return NGX_ERROR; + return NGX_DONE; }