explicitly force a reset to the event on creation

#Please enter the commit message for your changes. Lines starting
avinationmerge
UbitUmarov 2014-08-09 15:08:21 +01:00
parent ddfb05e57a
commit 74efe1e393
1 changed files with 2 additions and 1 deletions

View File

@ -139,6 +139,7 @@ namespace OpenSim.Framework.Capabilities
m_agentID = agent;
m_capsHandlers = new CapsHandlers(httpServer, httpListen, httpPort, (httpServer == null) ? false : httpServer.UseSSL);
m_regionName = regionName;
m_capsActive.Reset();
}
/// <summary>
@ -263,7 +264,7 @@ namespace OpenSim.Framework.Capabilities
public bool WaitForActivation()
{
// Wait for 30s. If that elapses, return false and run without caps
return m_capsActive.WaitOne(30000);
return m_capsActive.WaitOne(120000);
}
}
}