# HG changeset patch # User Sergey Kandaurov # Date 1664544287 -14400 # Node ID 28fc35b71d7566d5a7e04968c70291a239f05b6f # Parent 98e94553ae51227047fd64a081909239201b50da QUIC: "info" logging level on insufficient client connection ids. Apparently, this error is reported on NAT rebinding if client didn't previously send NEW_CONNECTION_ID to supply additional connection ids. diff --git a/src/event/quic/ngx_event_quic_migration.c b/src/event/quic/ngx_event_quic_migration.c --- a/src/event/quic/ngx_event_quic_migration.c +++ b/src/event/quic/ngx_event_quic_migration.c @@ -309,7 +309,7 @@ ngx_quic_set_path(ngx_connection_t *c, n /* new path requires new client id */ cid = ngx_quic_next_client_id(c); if (cid == NULL) { - ngx_log_error(NGX_LOG_ERR, c->log, 0, + ngx_log_error(NGX_LOG_INFO, c->log, 0, "quic no available client ids for new path"); /* stop processing of this datagram */ return NGX_DONE;