aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs
diff options
context:
space:
mode:
authorUbitUmarov2014-07-24 23:32:39 +0100
committerUbitUmarov2014-07-24 23:32:39 +0100
commit86a9710e77b76fb8a37faf9dacd22a0973628d92 (patch)
treee66022812a0a64ed0dfb8d93653760281402c654 /OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs
parentEventQueueGetModule: dont reuse queues, we dont know whats there; make (diff)
downloadopensim-SC_OLD-86a9710e77b76fb8a37faf9dacd22a0973628d92.zip
opensim-SC_OLD-86a9710e77b76fb8a37faf9dacd22a0973628d92.tar.gz
opensim-SC_OLD-86a9710e77b76fb8a37faf9dacd22a0973628d92.tar.bz2
opensim-SC_OLD-86a9710e77b76fb8a37faf9dacd22a0973628d92.tar.xz
change previus code, send a NoEvents response back to http server, even
if we know there is no one there, so that the server finishes handling it.
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs')
-rw-r--r--OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs
index e0ce35b..4a2ac86 100644
--- a/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs
+++ b/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs
@@ -380,8 +380,7 @@ namespace OpenSim.Region.ClientStack.Linden
380 Queue<OSD> queue = GetQueue(pAgentId); 380 Queue<OSD> queue = GetQueue(pAgentId);
381 if (queue == null) 381 if (queue == null)
382 { 382 {
383 //return NoEvents(requestID, pAgentId); 383 return NoEvents(requestID, pAgentId);
384 return null;
385 } 384 }
386 385
387 OSD element; 386 OSD element;