]> git.kaiwu.me - nginx.git/commitdiff
Removed unneccesary milliseconds conversion.
authorVladimir Homutov <vl@nginx.com>
Fri, 3 Apr 2020 13:33:59 +0000 (16:33 +0300)
committerVladimir Homutov <vl@nginx.com>
Fri, 3 Apr 2020 13:33:59 +0000 (16:33 +0300)
src/event/ngx_event_quic.c

index e746a375a7f8bf8bfeb28e94e8b274af482bacec..3278176ca6eff610ba2df8e2a38728b0ca1f6bc2 100644 (file)
@@ -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;