diff options
author | Diva Canto | 2012-03-12 07:55:17 -0700 |
---|---|---|
committer | Diva Canto | 2012-03-16 17:27:29 -0700 |
commit | 881740d702afb456869984dc4022e5540a8b6553 (patch) | |
tree | 5b8bdecf09419cbbec42146379b064208ea14a48 | |
parent | Terrain: added [Terrain] section with an option to load an initial flat terra... (diff) | |
download | opensim-SC_OLD-881740d702afb456869984dc4022e5540a8b6553.zip opensim-SC_OLD-881740d702afb456869984dc4022e5540a8b6553.tar.gz opensim-SC_OLD-881740d702afb456869984dc4022e5540a8b6553.tar.bz2 opensim-SC_OLD-881740d702afb456869984dc4022e5540a8b6553.tar.xz |
DataSnapshot: renamed gridserverURL to gatekeeperURL, and normalimzed the capitalization of 'name' to lower case, also in the same <grid> section.
-rw-r--r-- | OpenSim/Region/DataSnapshot/DataSnapshotManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs b/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs index 9fc002b..209fb52 100644 --- a/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs +++ b/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs | |||
@@ -103,10 +103,10 @@ namespace OpenSim.Region.DataSnapshot | |||
103 | m_enabled = config.Configs["DataSnapshot"].GetBoolean("index_sims", m_enabled); | 103 | m_enabled = config.Configs["DataSnapshot"].GetBoolean("index_sims", m_enabled); |
104 | IConfig conf = config.Configs["GridService"]; | 104 | IConfig conf = config.Configs["GridService"]; |
105 | if (conf != null) | 105 | if (conf != null) |
106 | m_gridinfo.Add("gridserverURL", conf.GetString("GridServerURI", "http://127.0.0.1:8003")); | 106 | m_gridinfo.Add("gatekeeperURL", conf.GetString("Gatekeeper", String.Empty)); |
107 | 107 | ||
108 | m_gridinfo.Add( | 108 | m_gridinfo.Add( |
109 | "Name", config.Configs["DataSnapshot"].GetString("gridname", "the lost continent of hippo")); | 109 | "name", config.Configs["DataSnapshot"].GetString("gridname", "the lost continent of hippo")); |
110 | m_exposure_level = config.Configs["DataSnapshot"].GetString("data_exposure", m_exposure_level); | 110 | m_exposure_level = config.Configs["DataSnapshot"].GetString("data_exposure", m_exposure_level); |
111 | m_period = config.Configs["DataSnapshot"].GetInt("default_snapshot_period", m_period); | 111 | m_period = config.Configs["DataSnapshot"].GetInt("default_snapshot_period", m_period); |
112 | m_maxStales = config.Configs["DataSnapshot"].GetInt("max_changes_before_update", m_maxStales); | 112 | m_maxStales = config.Configs["DataSnapshot"].GetInt("max_changes_before_update", m_maxStales); |