diff options
Diffstat (limited to 'OpenSim/Region/OptionalModules/DataSnapshot')
-rw-r--r-- | OpenSim/Region/OptionalModules/DataSnapshot/DataSnapshotManager.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Region/OptionalModules/DataSnapshot/DataSnapshotManager.cs b/OpenSim/Region/OptionalModules/DataSnapshot/DataSnapshotManager.cs index d7e9114..d44b8af 100644 --- a/OpenSim/Region/OptionalModules/DataSnapshot/DataSnapshotManager.cs +++ b/OpenSim/Region/OptionalModules/DataSnapshot/DataSnapshotManager.cs | |||
@@ -116,12 +116,12 @@ namespace OpenSim.Region.DataSnapshot | |||
116 | string gatekeeper = Util.GetConfigVarFromSections<string>(config, "GatekeeperURI", | 116 | string gatekeeper = Util.GetConfigVarFromSections<string>(config, "GatekeeperURI", |
117 | new string[] { "Startup", "Hypergrid", "GridService" }, String.Empty); | 117 | new string[] { "Startup", "Hypergrid", "GridService" }, String.Empty); |
118 | // Legacy. Remove soon! | 118 | // Legacy. Remove soon! |
119 | if (string.IsNullOrEmpty(gatekeeper)) | 119 | //// if (string.IsNullOrEmpty(gatekeeper)) |
120 | { | 120 | //// { |
121 | IConfig conf = config.Configs["GridService"]; | 121 | //// IConfig conf = config.Configs["GridService"]; |
122 | if (conf != null) | 122 | //// if (conf != null) |
123 | gatekeeper = conf.GetString("Gatekeeper", gatekeeper); | 123 | //// gatekeeper = conf.GetString("Gatekeeper", gatekeeper); |
124 | } | 124 | //// } |
125 | if (!string.IsNullOrEmpty(gatekeeper)) | 125 | if (!string.IsNullOrEmpty(gatekeeper)) |
126 | m_gridinfo.Add("gatekeeperURL", gatekeeper); | 126 | m_gridinfo.Add("gatekeeperURL", gatekeeper); |
127 | 127 | ||