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
- Changing "PreWarm" parameters on VFX Graph leads to significant performance drops and freeze
- Player display resolution changes to the native resolution of the monitor when Player becomes unresponsive
- [Quest] Game View is no longer rendered in the HMD if it's hidden in the Editor when using Meta Link
- Unity auto-generates code it can't compile when classes are renamed
- Terrain's "Grass Tint" Color picker has Alpha 0 by default
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.