Hi all,
Since upgrading to 5.6 I am being spammed with these messages constantly.
I have a very simple network setup
Server :
if (!NetworkServer.active)
{
ConnectionConfig config = new ConnectionConfig();
config.AddChannel(QosType.ReliableSequenced);
config.AddChannel(QosType.ReliableFragmented);
config.AddChannel(QosType.UnreliableSequenced);
config.DisconnectTimeout = 30000;
HostTopology tp = new HostTopology(config, 3000);
NetworkServer.Configure(tp);
NetworkServer.Listen(4444);
}
Client:
ThisClient = new NetworkClient();
ConnectionConfig config = new ConnectionConfig();
config.AddChannel(QosType.ReliableSequenced);
config.AddChannel(QosType.ReliableFragmented);
config.AddChannel(QosType.UnreliableSequenced);
config.DisconnectTimeout = 30000;
ThisClient.Configure(config, 1);
ThisClient.RegisterHandler(MsgType.Connect, OnConnected);
ThisClient.RegisterHandler(MsgType.Error, OnError);
ThisClient.Connect("127.0.0.1", 4444);
The major thing about this is this is that it is a commercial product that I wanted to upgrade to 5.6 and I have had no such problems for the last 3 months with the code you see.
Has something changed in 5.6?
As a further note, this seems to be set off by clicking outside the editor see - in fact this is exactly the issue, I run up the editor and play and everything is fine. The second I click outside these errors start to appear and won’t stop spamming till I stop and start again.
Thanks for the help.
Mike.