Revert "Putting the requests back in the queue while testing for count >0 is not the smartest move..."

This reverts commit f4317dc26d.
TeleportWork
Diva Canto 2013-07-17 15:04:27 -07:00
parent 5495df7443
commit 7127891957
1 changed files with 3 additions and 7 deletions

View File

@ -126,22 +126,18 @@ namespace OpenSim.Framework.Servers.HttpServer
Thread.Sleep(1000);
Watchdog.UpdateThread();
List<PollServiceHttpRequest> not_ready = new List<PollServiceHttpRequest>();
PollServiceHttpRequest req;
lock (m_longPollRequests)
{
while (m_longPollRequests.Count > 0 && m_running)
{
PollServiceHttpRequest req = m_longPollRequests.Dequeue();
req = m_longPollRequests.Dequeue();
if (req.PollServiceArgs.HasEvents(req.RequestID, req.PollServiceArgs.Id) || // there are events in this EQ
(Environment.TickCount - req.RequestTime) > req.PollServiceArgs.TimeOutms) // no events, but timeout
m_requests.Enqueue(req);
else
not_ready.Add(req);
m_longPollRequests.Enqueue(req);
}
foreach (PollServiceHttpRequest req in not_ready)
m_longPollRequests.Enqueue(req);
}
}
}