mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 17:32:42 +08:00
fix oar assets save
This commit is contained in:
@@ -129,7 +129,7 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
||||
return;
|
||||
}
|
||||
|
||||
m_timeOutTimer = new System.Timers.Timer(950000);
|
||||
m_timeOutTimer = new System.Timers.Timer(90000);
|
||||
m_timeOutTimer .AutoReset = false;
|
||||
m_timeOutTimer.Elapsed += OnTimeout;
|
||||
m_timeout = false;
|
||||
@@ -143,11 +143,9 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
||||
{
|
||||
m_timeOutTimer.Enabled = true;
|
||||
AssetBase asset = m_assetService.Get(thiskey);
|
||||
if(m_timeout && asset == null)
|
||||
if(m_timeout)
|
||||
break;
|
||||
else
|
||||
m_timeout = false;
|
||||
|
||||
|
||||
m_timeOutTimer.Enabled = false;
|
||||
|
||||
if(asset == null)
|
||||
|
||||
Reference in New Issue
Block a user