We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 978cfad commit cf34111Copy full SHA for cf34111
http2/transport.go
@@ -2371,14 +2371,16 @@ func (rl *clientConnReadLoop) processData(f *DataFrame) error {
2371
}
2372
if refund > 0 {
2373
cc.inflow.add(int32(refund))
2374
+ if !didReset {
2375
+ cs.inflow.add(int32(refund))
2376
+ }
2377
2378
cc.mu.Unlock()
2379
2380
2381
cc.wmu.Lock()
2382
cc.fr.WriteWindowUpdate(0, uint32(refund))
2383
if !didReset {
- cs.inflow.add(int32(refund))
2384
cc.fr.WriteWindowUpdate(cs.ID, uint32(refund))
2385
2386
cc.bw.Flush()
0 commit comments