Merge branch 'master' into httptests

This commit is contained in:
UbitUmarov
2017-01-07 16:55:03 +00:00
23 changed files with 485 additions and 363 deletions

View File

@@ -185,7 +185,13 @@ namespace OpenSim.Region.ClientStack.Linden
m_log.DebugFormat("[GetMeshModule] Closing");
foreach (Thread t in m_workerThreads)
Watchdog.AbortThread(t.ManagedThreadId);
m_queue.Clear();
// This will fail on region shutdown. Its harmless.
// Prevent red ink.
try
{
m_queue.Clear();
}
catch {}
}
}