Search Issue Tracker
By Design
Votes
0
Found in
2017.4.0f1
2018.3.0a1
2018.3.7f1
2019.1.0a1
2019.2.0a1
Issue ID
1134604
Regression
No
Udp packets are queued up/delayed when await Client.ReceiveAsync in async method is being called
How to reproduce:
1. Open attached project "NetworkTest.zip" and scene "SampleScene"
2. Enter Play mode and observe the Console window
Expected result: the overflown udp packets are dropped, the printed time is equal to the current computer time
Actual result: the udp packets are queued up, the printed time is delayed
Reproducible with: 2017.4.23f1, 2018.3.8f1, 2019.1.0b6, 2019.2.0a7
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Getting a deprecated package for JetBrains Rider pop up when opening or creating a project
- [Android] Volume level of the same audio file is different on Samsung Galaxy Tab A8 between 2023.3.0b3 and 2023.3.0b4
- ‘Expected end of value’ warning occurs when a property declaration includes five or more variable references
- Tags window completely breaks and throws Exception errors when Adding a Tag to a GameObject
- Crash on BurstCompilerService::CompileAsync when entering Play mode in a specific scene
Resolution Note:
Example was queuing all completion onto the UI thread with async/await rather than completing on the background worker threads.