Increase the amount of time we wait for a teleport to complete. This allows teleportation to a remote region without a local connection to the asset server without timing out.
parent
309f440fc0
commit
e80e04c5fd
|
@ -1032,7 +1032,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
|
|
||||||
public bool WaitForCallback(UUID id)
|
public bool WaitForCallback(UUID id)
|
||||||
{
|
{
|
||||||
int count = 200;
|
int count = 400;
|
||||||
while (m_agentsInTransit.Contains(id) && count-- > 0)
|
while (m_agentsInTransit.Contains(id) && count-- > 0)
|
||||||
{
|
{
|
||||||
//m_log.Debug(" >>> Waiting... " + count);
|
//m_log.Debug(" >>> Waiting... " + count);
|
||||||
|
|
Loading…
Reference in New Issue