aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/ClientView.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.cs b/OpenSim/Region/ClientStack/ClientView.cs
index e560cbe..4b3a6c1 100644
--- a/OpenSim/Region/ClientStack/ClientView.cs
+++ b/OpenSim/Region/ClientStack/ClientView.cs
@@ -270,9 +270,11 @@ namespace OpenSim.Region.ClientStack
270 if (throttleSentPeriod > throttleOutbound) 270 if (throttleSentPeriod > throttleOutbound)
271 { 271 {
272 PacketQueue.Enqueue(nextPacket); 272 PacketQueue.Enqueue(nextPacket);
273 MainLog.Instance.Verbose("Client over throttle limit, requeuing packet");
273 274
274 if (queuedLast) 275 if (queuedLast)
275 { 276 {
277 MainLog.Instance.Verbose("No more sendable packets, need to sleep now");
276 Thread.Sleep(100); // Wait a little while if this was the last packet we saw 278 Thread.Sleep(100); // Wait a little while if this was the last packet we saw
277 } 279 }
278 280