Minor adjustment on timings of waits.

This commit is contained in:
Diva Canto
2013-07-22 20:20:48 -07:00
parent c0433d5e4c
commit 14530b2607
2 changed files with 21 additions and 6 deletions

View File

@@ -4226,10 +4226,10 @@ namespace OpenSim.Region.Framework.Scenes
if (cAgentData.SenderWantsToWaitForRoot)
{
while (childAgentUpdate.IsChildAgent && ntimes-- > 0)
Thread.Sleep(500);
Thread.Sleep(1000);
m_log.DebugFormat(
"[SCENE PRESENCE]: Found presence {0} {1} {2} in {3} after {4} waits",
"[SCENE]: Found presence {0} {1} {2} in {3} after {4} waits",
childAgentUpdate.Name, childAgentUpdate.UUID, childAgentUpdate.IsChildAgent ? "child" : "root", RegionInfo.RegionName, 20 - ntimes);
if (childAgentUpdate.IsChildAgent)