minor tweaks

This commit is contained in:
kay.one 2011-07-06 00:36:49 -07:00
commit f0735c0693
4 changed files with 13 additions and 13 deletions

View file

@ -158,7 +158,7 @@ namespace NzbDrone.Core.Providers.Jobs
}
};
_jobThread = new Thread(starter) { Name = "JobQueueThread" };
_jobThread = new Thread(starter) { Name = "JobQueueThread", Priority = ThreadPriority.BelowNormal };
_jobThread.Start();
}