From 4cfc98c63f624d79366e71c14dbc1d063e2f333d Mon Sep 17 00:00:00 2001 From: Vladimir Homutov Date: Fri, 3 Apr 2020 16:33:59 +0300 Subject: [PATCH] Removed unneccesary milliseconds conversion. --- src/event/ngx_event_quic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;