diff options
author | Justin Clark-Casey (justincc) | 2013-09-02 17:45:38 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-09-02 17:45:38 +0100 |
commit | 5ce5ce6edb2217639cdcc375bf375452b81bb868 (patch) | |
tree | 69d97abe132cd624ec144be5de2ed1eb4aef20ea /OpenSim/Region | |
parent | Allow one to specify a DefaultHGRegion flag in [GridService] in order to allo... (diff) | |
download | opensim-SC_OLD-5ce5ce6edb2217639cdcc375bf375452b81bb868.zip opensim-SC_OLD-5ce5ce6edb2217639cdcc375bf375452b81bb868.tar.gz opensim-SC_OLD-5ce5ce6edb2217639cdcc375bf375452b81bb868.tar.bz2 opensim-SC_OLD-5ce5ce6edb2217639cdcc375bf375452b81bb868.tar.xz |
Comment out warning about agent updating without valid session ID for now.
This causes extreme console spam if a simulator running latest master and one running 0.7.5 have adjacent regions occupied by avatars.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index d547323..005c9b9 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -4346,10 +4346,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
4346 | ScenePresence childAgentUpdate = GetScenePresence(cAgentData.AgentID); | 4346 | ScenePresence childAgentUpdate = GetScenePresence(cAgentData.AgentID); |
4347 | if (childAgentUpdate != null) | 4347 | if (childAgentUpdate != null) |
4348 | { | 4348 | { |
4349 | if (childAgentUpdate.ControllingClient.SessionId != cAgentData.SessionID) | 4349 | // if (childAgentUpdate.ControllingClient.SessionId != cAgentData.SessionID) |
4350 | // Only warn for now | 4350 | // // Only warn for now |
4351 | m_log.WarnFormat("[SCENE]: Attempt at updating position of agent {0} with invalid session id {1}. Neighbor running older version?", | 4351 | // m_log.WarnFormat("[SCENE]: Attempt at updating position of agent {0} with invalid session id {1}. Neighbor running older version?", |
4352 | childAgentUpdate.UUID, cAgentData.SessionID); | 4352 | // childAgentUpdate.UUID, cAgentData.SessionID); |
4353 | 4353 | ||
4354 | // I can't imagine *yet* why we would get an update if the agent is a root agent.. | 4354 | // I can't imagine *yet* why we would get an update if the agent is a root agent.. |
4355 | // however to avoid a race condition crossing borders.. | 4355 | // however to avoid a race condition crossing borders.. |