Make small adjustment to JobEngine default from previous commit to enable it when [Startup] section is not present (though this is extremely unlikely).
parent
59b38f842a
commit
b1fd0d35e5
|
@ -338,7 +338,7 @@ namespace OpenSim
|
||||||
// Called from base.StartUp()
|
// Called from base.StartUp()
|
||||||
|
|
||||||
IConfig startupConfig = Config.Configs["Startup"];
|
IConfig startupConfig = Config.Configs["Startup"];
|
||||||
if (startupConfig != null && startupConfig.GetBoolean("JobEngineEnabled", true))
|
if (startupConfig == null || startupConfig.GetBoolean("JobEngineEnabled", true))
|
||||||
Watchdog.JobEngine.Start();
|
Watchdog.JobEngine.Start();
|
||||||
|
|
||||||
m_httpServerPort = m_networkServersInfo.HttpListenerPort;
|
m_httpServerPort = m_networkServersInfo.HttpListenerPort;
|
||||||
|
|
Loading…
Reference in New Issue