mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
reduce calls to time.Now() from the flow controller
This commit is contained in:
parent
05514ab375
commit
66eeff040b
3 changed files with 9 additions and 7 deletions
|
@ -145,7 +145,7 @@ var _ = Describe("Base Flow controller", func() {
|
|||
|
||||
It("doesn't increase the window size when no RTT estimate is available", func() {
|
||||
setRtt(0)
|
||||
controller.startNewAutoTuningEpoch()
|
||||
controller.startNewAutoTuningEpoch(time.Now())
|
||||
controller.AddBytesRead(400)
|
||||
offset := controller.getWindowUpdate()
|
||||
Expect(offset).ToNot(BeZero()) // make sure a window update is sent
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue