Removed unneccesary milliseconds conversion.

This commit is contained in:
Vladimir Homutov 2020-04-03 16:33:59 +03:00
parent b3300b5220
commit 4cfc98c63f

View File

@ -1574,7 +1574,7 @@ ngx_quic_output(ngx_connection_t *c)
} }
if (!qc->retry.timer_set && !qc->closing) { 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; return NGX_OK;