diff options
author | Diva Canto | 2013-07-18 13:30:04 -0700 |
---|---|---|
committer | Diva Canto | 2013-07-18 13:30:04 -0700 |
commit | b5062ae7ee4067158f255a0d62fb87b8eaf9d1d6 (patch) | |
tree | 36bb39138d07aa2082affcda77414024f931ebf5 /OpenSim/Framework | |
parent | try Hacking in an AutoResetEvent to control the outgoing UDP loop instead of ... (diff) | |
download | opensim-SC_OLD-b5062ae7ee4067158f255a0d62fb87b8eaf9d1d6.zip opensim-SC_OLD-b5062ae7ee4067158f255a0d62fb87b8eaf9d1d6.tar.gz opensim-SC_OLD-b5062ae7ee4067158f255a0d62fb87b8eaf9d1d6.tar.bz2 opensim-SC_OLD-b5062ae7ee4067158f255a0d62fb87b8eaf9d1d6.tar.xz |
Changed the timoeut of EQ 502s (no events) to 50 secs. The viewer post requests timeout in 60 secs.
There's plenty of room for improvement in handling the EQs. Some other time...
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs b/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs index c50df5a..e811079 100644 --- a/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs +++ b/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs | |||
@@ -118,7 +118,7 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
118 | // The only purpose of this thread is to check the EQs for events. | 118 | // The only purpose of this thread is to check the EQs for events. |
119 | // If there are events, that thread will be placed in the "ready-to-serve" queue, m_requests. | 119 | // If there are events, that thread will be placed in the "ready-to-serve" queue, m_requests. |
120 | // If there are no events, that thread will be back to its "waiting" queue, m_longPollRequests. | 120 | // If there are no events, that thread will be back to its "waiting" queue, m_longPollRequests. |
121 | // All other types of tasks (Inventory handlers) don't have the long-poll nature, | 121 | // All other types of tasks (Inventory handlers, http-in, etc) don't have the long-poll nature, |
122 | // so if they aren't ready to be served by a worker thread (no events), they are placed | 122 | // so if they aren't ready to be served by a worker thread (no events), they are placed |
123 | // directly back in the "ready-to-serve" queue by the worker thread. | 123 | // directly back in the "ready-to-serve" queue by the worker thread. |
124 | while (m_running) | 124 | while (m_running) |