aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-09-25 18:29:14 +0100
committerJustin Clark-Casey (justincc)2013-09-26 20:11:00 +0100
commit7eb5680c38df8bd2f4cd47f5363f50d63f26b1ac (patch)
tree154d16e86c094a33ea3d94c181c9147d97c4ac77
parentInstead of swallowing any socket begin/end receive exceptions, log them for d... (diff)
downloadopensim-SC_OLD-7eb5680c38df8bd2f4cd47f5363f50d63f26b1ac.zip
opensim-SC_OLD-7eb5680c38df8bd2f4cd47f5363f50d63f26b1ac.tar.gz
opensim-SC_OLD-7eb5680c38df8bd2f4cd47f5363f50d63f26b1ac.tar.bz2
opensim-SC_OLD-7eb5680c38df8bd2f4cd47f5363f50d63f26b1ac.tar.xz
Reinsert 200ms sleep accidentally removed in commit 7dbc93c (Wed Sep 18 21:41:51 2013 +0100)
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
index b1752c1..a130ffe 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
@@ -1722,9 +1722,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
1722 m_log.DebugFormat( 1722 m_log.DebugFormat(
1723 "[LLUDPSERVER]: Received a CompleteMovementIntoRegion from {0} in {1} but no client exists. Waiting.", 1723 "[LLUDPSERVER]: Received a CompleteMovementIntoRegion from {0} in {1} but no client exists. Waiting.",
1724 endPoint, m_scene.Name); 1724 endPoint, m_scene.Name);
1725
1726 Thread.Sleep(200);
1727 } 1725 }
1726
1727 Thread.Sleep(200);
1728 } 1728 }
1729 1729
1730 if (client == null) 1730 if (client == null)