mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
Changed the "not in scene" check in the prioritizier to just
a warning. There appears to be a race condition on slow logins that attempts to prioritize before the scene presence is fully initialized.
This commit is contained in:
@@ -166,8 +166,9 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
ScenePresence presence = m_scene.GetScenePresence(client.AgentId);
|
||||
if (presence == null)
|
||||
{
|
||||
m_log.WarnFormat("[PRIORITIZER] attempt to prioritize agent no longer in the scene");
|
||||
throw new InvalidOperationException("Prioritization agent not defined");
|
||||
m_log.WarnFormat("[PRIORITIZER] attempt to use agent {0} not in the scene",client.AgentId);
|
||||
// throw new InvalidOperationException("Prioritization agent not defined");
|
||||
return Int32.MaxValue;
|
||||
}
|
||||
|
||||
// Use group position for child prims, since we are putting child prims in
|
||||
|
||||
Reference in New Issue
Block a user