From: Vladimir Homutov Date: Fri, 3 Apr 2020 13:33:59 +0000 (+0300) Subject: Removed unneccesary milliseconds conversion. X-Git-Tag: release-1.25.0~4^2~793 X-Git-Url: http://www.kaiwu.me/postgresql/commit/static/gitweb.js?a=commitdiff_plain;h=4cfc98c63f624d79366e71c14dbc1d063e2f333d;p=nginx.git Removed unneccesary milliseconds conversion. --- diff --git a/src/event/ngx_event_quic.c b/src/event/ngx_event_quic.c index e746a375a..3278176ca 100644 --- a/src/event/ngx_event_quic.c +++ b/src/event/ngx_event_quic.c @@ -1574,7 +1574,7 @@ ngx_quic_output(ngx_connection_t *c) } if (!qc->retry.timer_set && !qc->closing) { - ngx_add_timer(&qc->retry, qc->tp.max_ack_delay * 1000); + ngx_add_timer(&qc->retry, qc->tp.max_ack_delay); } return NGX_OK;