Search Issue Tracker
Won't Fix
Won't Fix in 1.0.X
Votes
0
Found in [Package]
1.0.0-pre.16
Issue ID
UTRANS-2
Regression
Yes
"Resetting event queue with pending events" error thrown after connecting client to server
Reproduction steps:
1. Open the user's attached project "netcode-tests.zip"
2. Enter Play mode
3. Observe the Console window
Expected result: "Server received TestPacket" and "Client received TestPacketReplay" are logged in the Console window
Actual result: "Resetting event queue with pending events (Count=1, ConnectionID=0) Listening: 1" error is thrown
Reproducible with: 1.0.0-pre.14, 1.1.0-exp.1 (2020.3.26f1, 2020.3.30f1)
Not reproducible with: 1.0.0-pre.14, 1.1.0-exp.1 (2020.3.25f1)
Could not test with: 2019.4.36f1 (Not compatible with Collections 1.1.0), 2021.2.15f1, 2022.1.0b11, 2022.2.0a7 ("System.ArgumentException: Absolute path information is required.", "Can't get typecode for packet TestPacket")
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
- Code runs slower when using a cached exception instance compared to creating a new one
- Broken UI in Default Preset Add Section of "Preset Manager" window
- [iOS] The Player freezes when closing the Notification Center and quickly swiping down from top
- Crash on Texture2D:SetPixelImpl when rapidly calling Texture2D.Apply()
- Graph Lines are not rendered when using Experimental GraphView or GridBackground
Resolution Note:
There are no fixes planned for this Bug
Resolution Note (1.0.X):
Updating to UTP 1.0 removed the mentioned error. Another one arose in the user code : quickly fixed by adding an `if(Instance != null)` , in the `PlayerLoopManager.cs` line 17 .
public static void RemoveUpdate(Action _delegate)
{ if(Instance!=null) Instance.updateSystem.OnTick -= _delegate; }
Closing as not a bug.