Fix bugs in EventQueueGetModule.ClientClosed() and BaseHttpServer.RemovePollServerHTTPHandler() that stopped existing code in ClientClosed() from actually tearing down the poll handler

Actually doing the tear down appear to have no ill effects with region crossing and teleport.
This commit is contained in:
Justin Clark-Casey (justincc)
2011-10-24 23:16:03 +01:00
parent 79d5bc9beb
commit 9ec672c70b
4 changed files with 31 additions and 9 deletions

View File

@@ -1815,9 +1815,9 @@ namespace OpenSim.Framework.Servers.HttpServer
{
lock (m_pollHandlers)
{
if (m_pollHandlers.ContainsKey(httpMethod))
if (m_pollHandlers.ContainsKey(path))
{
m_pollHandlers.Remove(httpMethod);
m_pollHandlers.Remove(path);
}
}