diff options
author | Diva Canto | 2013-07-22 20:20:48 -0700 |
---|---|---|
committer | Diva Canto | 2013-07-24 14:29:37 -0700 |
commit | 14530b260764372df3627206c531b96b9d817dbe (patch) | |
tree | 4243914d2f6d1c458a6c6bcc7b7d3d3c4812c1dd /OpenSim/Region/Framework | |
parent | Changed the RegionHandshake packet to the Unknown queue, so that it is sent w... (diff) | |
download | opensim-SC_OLD-14530b260764372df3627206c531b96b9d817dbe.zip opensim-SC_OLD-14530b260764372df3627206c531b96b9d817dbe.tar.gz opensim-SC_OLD-14530b260764372df3627206c531b96b9d817dbe.tar.bz2 opensim-SC_OLD-14530b260764372df3627206c531b96b9d817dbe.tar.xz |
Minor adjustment on timings of waits.
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index da8a1b8..84fdef0 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -4226,10 +4226,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
4226 | if (cAgentData.SenderWantsToWaitForRoot) | 4226 | if (cAgentData.SenderWantsToWaitForRoot) |
4227 | { | 4227 | { |
4228 | while (childAgentUpdate.IsChildAgent && ntimes-- > 0) | 4228 | while (childAgentUpdate.IsChildAgent && ntimes-- > 0) |
4229 | Thread.Sleep(500); | 4229 | Thread.Sleep(1000); |
4230 | 4230 | ||
4231 | m_log.DebugFormat( | 4231 | m_log.DebugFormat( |
4232 | "[SCENE PRESENCE]: Found presence {0} {1} {2} in {3} after {4} waits", | 4232 | "[SCENE]: Found presence {0} {1} {2} in {3} after {4} waits", |
4233 | childAgentUpdate.Name, childAgentUpdate.UUID, childAgentUpdate.IsChildAgent ? "child" : "root", RegionInfo.RegionName, 20 - ntimes); | 4233 | childAgentUpdate.Name, childAgentUpdate.UUID, childAgentUpdate.IsChildAgent ? "child" : "root", RegionInfo.RegionName, 20 - ntimes); |
4234 | 4234 | ||
4235 | if (childAgentUpdate.IsChildAgent) | 4235 | if (childAgentUpdate.IsChildAgent) |