give viewers more time to start uploading assets
parent
22c28a0260
commit
5fa81a6ca9
|
@ -174,9 +174,9 @@ namespace OpenSim.Framework.Capabilities
|
|||
public void Dispose(bool disposing)
|
||||
{
|
||||
Flags = CapsFlags.None;
|
||||
DeregisterHandlers();
|
||||
if (m_capsActive != null)
|
||||
{
|
||||
DeregisterHandlers();
|
||||
m_capsActive.Dispose();
|
||||
m_capsActive = null;
|
||||
}
|
||||
|
|
|
@ -284,7 +284,8 @@ namespace OpenSim.Region.ClientStack.Linden
|
|||
|
||||
m_timeout = new Timer();
|
||||
m_timeout.Elapsed += Timeout;
|
||||
m_timeout.Interval = 1000;
|
||||
m_timeout.AutoReset = false;
|
||||
m_timeout.Interval = 30000;
|
||||
m_timeout.Start();
|
||||
}
|
||||
|
||||
|
@ -386,7 +387,8 @@ namespace OpenSim.Region.ClientStack.Linden
|
|||
m_remoteAddress = address;
|
||||
m_timeout = new Timer();
|
||||
m_timeout.Elapsed += Timeout;
|
||||
m_timeout.Interval = 1000;
|
||||
m_timeout.AutoReset = false;
|
||||
m_timeout.Interval = 30000;
|
||||
m_timeout.Start();
|
||||
}
|
||||
|
||||
|
|
|
@ -171,7 +171,8 @@ namespace OpenSim.Region.ClientStack.Linden
|
|||
m_assetCache = cache;
|
||||
m_timeout = new Timer();
|
||||
m_timeout.Elapsed += Timeout;
|
||||
m_timeout.Interval = 1000;
|
||||
m_timeout.AutoReset = false;
|
||||
m_timeout.Interval = 30000;
|
||||
m_timeout.Start();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue