Amend Justin's last commit regarding the new config var ServiceVersion. The section may not exist at all.
parent
fdfc951744
commit
847c01f406
|
@ -84,10 +84,11 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Simulation
|
||||||
|
|
||||||
public void InitialiseService(IConfigSource configSource)
|
public void InitialiseService(IConfigSource configSource)
|
||||||
{
|
{
|
||||||
|
ServiceVersion = "SIMULATION/0.2";
|
||||||
IConfig config = configSource.Configs["SimulationService"];
|
IConfig config = configSource.Configs["SimulationService"];
|
||||||
if (config != null)
|
if (config != null)
|
||||||
{
|
{
|
||||||
ServiceVersion = config.GetString("ConnectorProtocolVersion", "SIMULATION/0.2");
|
ServiceVersion = config.GetString("ConnectorProtocolVersion", ServiceVersion);
|
||||||
|
|
||||||
if (ServiceVersion != "SIMULATION/0.1" && ServiceVersion != "SIMULATION/0.2")
|
if (ServiceVersion != "SIMULATION/0.1" && ServiceVersion != "SIMULATION/0.2")
|
||||||
throw new Exception(string.Format("Invalid ConnectorProtocolVersion {0}", ServiceVersion));
|
throw new Exception(string.Format("Invalid ConnectorProtocolVersion {0}", ServiceVersion));
|
||||||
|
|
Loading…
Reference in New Issue