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 d7eefc9 commit 2df4c53Copy full SHA for 2df4c53
http2/transport.go
@@ -2338,14 +2338,16 @@ func (rl *clientConnReadLoop) processData(f *DataFrame) error {
2338
}
2339
if refund > 0 {
2340
cc.inflow.add(int32(refund))
2341
+ if !didReset {
2342
+ cs.inflow.add(int32(refund))
2343
+ }
2344
2345
cc.mu.Unlock()
2346
2347
2348
cc.wmu.Lock()
2349
cc.fr.WriteWindowUpdate(0, uint32(refund))
2350
if !didReset {
- cs.inflow.add(int32(refund))
2351
cc.fr.WriteWindowUpdate(cs.ID, uint32(refund))
2352
2353
cc.bw.Flush()
0 commit comments