mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
Make small adjustment to JobEngine default from previous commit to enable it when [Startup] section is not present (though this is extremely unlikely).
This commit is contained in:
@@ -338,7 +338,7 @@ namespace OpenSim
|
||||
// Called from base.StartUp()
|
||||
|
||||
IConfig startupConfig = Config.Configs["Startup"];
|
||||
if (startupConfig != null && startupConfig.GetBoolean("JobEngineEnabled", true))
|
||||
if (startupConfig == null || startupConfig.GetBoolean("JobEngineEnabled", true))
|
||||
Watchdog.JobEngine.Start();
|
||||
|
||||
m_httpServerPort = m_networkServersInfo.HttpListenerPort;
|
||||
|
||||
Reference in New Issue
Block a user