mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-09-22 14:21:25 +02:00
MINOR: quic: Do not display any timer value from process_timer()
This is confusing to display the connection timer from this function as it is not supposed to update it. Only qc_set_timer() should do that.
This commit is contained in:
parent
05bd92bbc5
commit
03235d78ae
@ -529,7 +529,7 @@ static void quic_trace(enum trace_level level, uint64_t mask, const struct trace
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(mask & QUIC_EV_CONN_SPTO) && qc->timer_task) {
|
if (!(mask & (QUIC_EV_CONN_SPTO|QUIC_EV_CONN_PTIMER)) && qc->timer_task) {
|
||||||
chunk_appendf(&trace_buf,
|
chunk_appendf(&trace_buf,
|
||||||
" expire=%dms", TICKS_TO_MS(qc->timer - now_ms));
|
" expire=%dms", TICKS_TO_MS(qc->timer - now_ms));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user