aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/OpenSimDefaults.ini
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-09-27 00:23:52 +0100
committerJustin Clark-Casey (justincc)2014-09-27 00:23:52 +0100
commit530b0cbbf1e8f40fcc06b7c6d7011392c5356a9b (patch)
tree87b5662aa65540e0b800ffa225d36c0a69587835 /bin/OpenSimDefaults.ini
parentFix recent regression with llRegionSayTo() started sending messages twice. (diff)
downloadopensim-SC_OLD-530b0cbbf1e8f40fcc06b7c6d7011392c5356a9b.zip
opensim-SC_OLD-530b0cbbf1e8f40fcc06b7c6d7011392c5356a9b.tar.gz
opensim-SC_OLD-530b0cbbf1e8f40fcc06b7c6d7011392c5356a9b.tar.bz2
opensim-SC_OLD-530b0cbbf1e8f40fcc06b7c6d7011392c5356a9b.tar.xz
Move expired objects cleaning trigger to the maintenance thread of a region rather than it's main scene loop.
[Startup] default setting UpdateTempCleaningEveryNFrames becomes UpdateTempCleaningEveryNSeconds. Default becomes 180s instead of effective 182s (which would also vary with any changes in frame time or extra long frames)
Diffstat (limited to '')
-rw-r--r--bin/OpenSimDefaults.ini8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini
index c6250e5..54f3da6 100644
--- a/bin/OpenSimDefaults.ini
+++ b/bin/OpenSimDefaults.ini
@@ -180,10 +180,6 @@
180 ; This must be a whole number 180 ; This must be a whole number
181 UpdatePhysicsEveryNFrames = 1; 181 UpdatePhysicsEveryNFrames = 1;
182 182
183 ; Clean up temp on rez objects.
184 ; This must be a whole number
185 UpdateTempCleaningEveryNFrames = 1000;
186
187 ; Send out the on frame event to modules and other listeners. This should probably never deviate from 1. 183 ; Send out the on frame event to modules and other listeners. This should probably never deviate from 1.
188 ; This must be a whole number 184 ; This must be a whole number
189 UpdateEventsEveryNFrames = 1; 185 UpdateEventsEveryNFrames = 1;
@@ -196,6 +192,10 @@
196 ; This must be a whole number 192 ; This must be a whole number
197 UpdateStorageEveryNFrames = 200; 193 UpdateStorageEveryNFrames = 200;
198 194
195 ; Clean up temp on rez objects.
196 ; This must be a whole number
197 UpdateTempCleaningEveryNSeconds = 180;
198
199 ; ## 199 ; ##
200 ; ## PRIM STORAGE 200 ; ## PRIM STORAGE
201 ; ## 201 ; ##