diff options
author | Diva Canto | 2013-07-26 21:40:04 -0700 |
---|---|---|
committer | Diva Canto | 2013-07-26 21:40:04 -0700 |
commit | 3dac92f345cf69244cbbd10e65d5a8c04da710f5 (patch) | |
tree | d1978ff6e18430ba4df2f0a550e7a04239912aa2 /OpenSim/Framework | |
parent | Trying to decrease the lag on group chat. (Groups V2 only) (diff) | |
download | opensim-SC_OLD-3dac92f345cf69244cbbd10e65d5a8c04da710f5.zip opensim-SC_OLD-3dac92f345cf69244cbbd10e65d5a8c04da710f5.tar.gz opensim-SC_OLD-3dac92f345cf69244cbbd10e65d5a8c04da710f5.tar.bz2 opensim-SC_OLD-3dac92f345cf69244cbbd10e65d5a8c04da710f5.tar.xz |
Increased the rate of the PollServiceRequestManager to 0.5 secs (it was 1sec). Group chat is going over the EQ... Hopefully this won't increase CPU when there's nothing going on, but we need to watch for that.
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 d83daab..6ab05d0 100644 --- a/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs +++ b/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs | |||
@@ -133,7 +133,7 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
133 | // directly back in the "ready-to-serve" queue by the worker thread. | 133 | // directly back in the "ready-to-serve" queue by the worker thread. |
134 | while (m_running) | 134 | while (m_running) |
135 | { | 135 | { |
136 | Thread.Sleep(1000); | 136 | Thread.Sleep(500); |
137 | Watchdog.UpdateThread(); | 137 | Watchdog.UpdateThread(); |
138 | 138 | ||
139 | List<PollServiceHttpRequest> not_ready = new List<PollServiceHttpRequest>(); | 139 | List<PollServiceHttpRequest> not_ready = new List<PollServiceHttpRequest>(); |