You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
which appends chunks to the back of the pending queue.
Consider the following two simultaneous calls to `send_payload_data`:
```
1. [beginning_fragment1, data2, data3, ending_fragment4]
2. [beginning_fragment5, data6, data7, ending_fragment8]
```
If `push` is used, due to individual locks, it's possible to end up with:
```
[beginning_fragment1, data2, beginning_fragment5, data3, data6, ending_fragment4,
data6, data7, ending_fragment8]
```
This will result in wrong data received by the remote.
0 commit comments