Revert "Now trying DoubleQueue instead of BlockingQueue for the PollServiceRequestManager."

This reverts commit 5f95f4d78e.
TeleportWork
Diva Canto 2013-07-17 15:03:16 -07:00
parent 5c54eb30ed
commit 519dba9a69
1 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ namespace OpenSim.Framework.Servers.HttpServer
private readonly BaseHttpServer m_server;
private DoubleQueue<PollServiceHttpRequest> m_requests = new DoubleQueue<PollServiceHttpRequest>();
private BlockingQueue<PollServiceHttpRequest> m_requests = new BlockingQueue<PollServiceHttpRequest>();
private static Queue<PollServiceHttpRequest> m_longPollRequests = new Queue<PollServiceHttpRequest>();
private uint m_WorkerThreadCount = 0;
@ -163,7 +163,7 @@ namespace OpenSim.Framework.Servers.HttpServer
m_requests.Enqueue(m_longPollRequests.Dequeue());
}
while (m_requests.Count > 0)
while (m_requests.Count() > 0)
{
try
{