give viewers more time to start uploading assets

This commit is contained in:
UbitUmarov
2020-04-30 17:02:37 +01:00
parent 22c28a0260
commit 5fa81a6ca9
3 changed files with 7 additions and 4 deletions

View File

@@ -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();
}