do not timeout BackupWorker threads

0.9.0.1-postfixes
UbitUmarov 2018-01-16 17:16:40 +00:00
parent 439cbf0d4d
commit d39bf37926
1 changed files with 1 additions and 1 deletions

View File

@ -1943,7 +1943,7 @@ namespace OpenSim.Region.Framework.Scenes
{ {
if (!m_backingup) if (!m_backingup)
{ {
WorkManager.RunInThreadPool(o => Backup(false), null, string.Format("BackupWorker ({0})", Name)); WorkManager.RunInThreadPool(o => Backup(false), null, string.Format("BackupWorker ({0})", Name, false));
} }
} }