If no job engine is started at all, keep checking it's status from

bombing
LSLKeyTest
Melanie Thielker 2015-11-24 21:10:40 +01:00
parent 6d5b405168
commit 774ac5e96b
1 changed files with 2 additions and 3 deletions

View File

@ -76,7 +76,7 @@ namespace OpenSim.Framework.Monitoring
/// </remarks>
private bool m_warnOverMaxQueue = true;
private BlockingCollection<Job> m_jobQueue;
private BlockingCollection<Job> m_jobQueue = new BlockingCollection<Job>(new ConcurrentQueue<Job>(), 5000);
private CancellationTokenSource m_cancelSource;
@ -104,7 +104,6 @@ namespace OpenSim.Framework.Monitoring
m_finishedProcessingAfterStop.Reset();
m_jobQueue = new BlockingCollection<Job>(new ConcurrentQueue<Job>(), 5000);
m_cancelSource = new CancellationTokenSource();
WorkManager.StartThread(
@ -338,4 +337,4 @@ namespace OpenSim.Framework.Monitoring
}
}
}
}
}