diff options
author | UbitUmarov | 2018-01-16 17:16:40 +0000 |
---|---|---|
committer | UbitUmarov | 2018-01-16 17:16:40 +0000 |
commit | d39bf37926263655fa4a3f7201ffb5e7cbd5e020 (patch) | |
tree | 4caa0cef3e6082fa7f529614ca70a24504141a48 /OpenSim/Region | |
parent | missed a few.. (diff) | |
download | opensim-SC_OLD-d39bf37926263655fa4a3f7201ffb5e7cbd5e020.zip opensim-SC_OLD-d39bf37926263655fa4a3f7201ffb5e7cbd5e020.tar.gz opensim-SC_OLD-d39bf37926263655fa4a3f7201ffb5e7cbd5e020.tar.bz2 opensim-SC_OLD-d39bf37926263655fa4a3f7201ffb5e7cbd5e020.tar.xz |
do not timeout BackupWorker threads
Diffstat (limited to '')
-rwxr-xr-x | OpenSim/Region/Framework/Scenes/Scene.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index c223aae..6497444 100755 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -1943,7 +1943,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1943 | { | 1943 | { |
1944 | if (!m_backingup) | 1944 | if (!m_backingup) |
1945 | { | 1945 | { |
1946 | WorkManager.RunInThreadPool(o => Backup(false), null, string.Format("BackupWorker ({0})", Name)); | 1946 | WorkManager.RunInThreadPool(o => Backup(false), null, string.Format("BackupWorker ({0})", Name, false)); |
1947 | } | 1947 | } |
1948 | } | 1948 | } |
1949 | 1949 | ||