Skip to content

Commit

Permalink
ACK_FREQUENCY Knob logging fix.
Browse files Browse the repository at this point in the history
Summary: Messed up the log line.

Reviewed By: jbeshay

Differential Revision: D45913954

fbshipit-source-id: c3199dd6ecf114e75b934759c2b9054d38c9f17d
  • Loading branch information
Matt Joras authored and facebook-github-bot committed May 17, 2023
1 parent 6f8e49d commit c95b297
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions quic/server/QuicServerTransport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1010,12 +1010,14 @@ void QuicServerTransport::registerAllTransportKnobParamHandlers() {
"ACK_FREQUENCY_POLICY KnobParam received, "
"ackElicitingThreshold={}, "
"reorderingThreshold={}, "
"minRttDivisor={}",
"useSmallThresholdDuringStartup={}",
"minRttDivisor={}, "
"useSmallThresholdDuringStartup={}, "
"raw knob={}",
ackFrequencyConfig.ackElicitingThreshold,
ackFrequencyConfig.reorderingThreshold,
ackFrequencyConfig.minRttDivisor,
ackFrequencyConfig.useSmallThresholdDuringStartup);
ackFrequencyConfig.useSmallThresholdDuringStartup,
val);
serverTransport->conn_->transportSettings.bbrConfig
.ackFrequencyConfig = ackFrequencyConfig;
} else {
Expand Down

0 comments on commit c95b297

Please sign in to comment.