aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLUDPClient.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPClient.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPClient.cs
index a43197d..de67ca7 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPClient.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPClient.cs
@@ -552,6 +552,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
552 catch (Exception e) { m_log.Error("[LLUDPCLIENT]: OnQueueEmpty(" + type + ") threw an exception: " + e.Message, e); } 552 catch (Exception e) { m_log.Error("[LLUDPCLIENT]: OnQueueEmpty(" + type + ") threw an exception: " + e.Message, e); }
553 } 553 }
554 554
555 // HACK: Try spending some extra time here to slow down OnQueueEmpty calls
556 System.Threading.Thread.Sleep(100);
557
555 m_onQueueEmptyRunning[i] = false; 558 m_onQueueEmptyRunning[i] = false;
556 } 559 }
557 } 560 }