mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 18:55:58 +08:00
avoid some large unnecessary strings
This commit is contained in:
@@ -79,7 +79,7 @@ namespace OpenSim.Framework.Monitoring
|
||||
/// </remarks>
|
||||
private bool m_warnOverMaxQueue = true;
|
||||
|
||||
private BlockingCollection<Job> m_jobQueue = new BlockingCollection<Job>(new ConcurrentQueue<Job>(), 5000);
|
||||
private BlockingCollection<Job> m_jobQueue = new BlockingCollection<Job>(5000);
|
||||
|
||||
private CancellationTokenSource m_cancelSource;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user