remove some redundancy

This commit is contained in:
UbitUmarov
2020-05-11 15:12:21 +01:00
parent 7f3bb9267a
commit 713c222ec8
8 changed files with 27 additions and 73 deletions

View File

@@ -161,13 +161,13 @@ namespace OpenSim.Framework.Servers.HttpServer
Watchdog.UpdateThread();
if (!req.HttpContext.CanSend())
if (!req.Request.Context.CanSend())
{
req.PollServiceArgs.Drop(req.RequestID, req.PollServiceArgs.Id);
continue;
}
if (req.HttpContext.IsSending())
if (req.Request.Context.IsSending())
{
ReQueueEvent(req);
continue;