From c7127594c8a1ca7b137ed8037a46ffbcbbef4993 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Tue, 28 Jul 2020 08:56:21 +0700 Subject: [PATCH] fix tracing of congestion state updates --- internal/congestion/cubic_sender.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/congestion/cubic_sender.go b/internal/congestion/cubic_sender.go index 07f6cbd3..936fb4cc 100644 --- a/internal/congestion/cubic_sender.go +++ b/internal/congestion/cubic_sender.go @@ -277,4 +277,5 @@ func (c *cubicSender) maybeTraceStateChange(new logging.CongestionState) { return } c.tracer.UpdatedCongestionState(new) + c.lastState = new }