diff options
author | Melanie | 2010-04-27 00:27:05 +0100 |
---|---|---|
committer | Melanie | 2010-04-27 00:27:05 +0100 |
commit | bbffe16f138a7a11e43cd403df07ed8aa934fab3 (patch) | |
tree | d9de049741233cd4fe8c8d6675acc31c483fa845 /OpenSim/Region | |
parent | Add a parameter to prim inventory update to prevent event firing (diff) | |
parent | Add a parameter to prim inventory update to prevent event firing (diff) | |
download | opensim-SC_OLD-bbffe16f138a7a11e43cd403df07ed8aa934fab3.zip opensim-SC_OLD-bbffe16f138a7a11e43cd403df07ed8aa934fab3.tar.gz opensim-SC_OLD-bbffe16f138a7a11e43cd403df07ed8aa934fab3.tar.bz2 opensim-SC_OLD-bbffe16f138a7a11e43cd403df07ed8aa934fab3.tar.xz |
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Application/ConfigurationLoader.cs | 6 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IRegionModule.cs | 3 |
2 files changed, 3 insertions, 6 deletions
diff --git a/OpenSim/Region/Application/ConfigurationLoader.cs b/OpenSim/Region/Application/ConfigurationLoader.cs index 4ca6595..cac5fa9 100644 --- a/OpenSim/Region/Application/ConfigurationLoader.cs +++ b/OpenSim/Region/Application/ConfigurationLoader.cs | |||
@@ -349,12 +349,6 @@ namespace OpenSim | |||
349 | m_configSettings.See_into_region_from_neighbor = startupConfig.GetBoolean("see_into_this_sim_from_neighbor", true); | 349 | m_configSettings.See_into_region_from_neighbor = startupConfig.GetBoolean("see_into_this_sim_from_neighbor", true); |
350 | 350 | ||
351 | m_configSettings.StorageDll = startupConfig.GetString("storage_plugin"); | 351 | m_configSettings.StorageDll = startupConfig.GetString("storage_plugin"); |
352 | if (m_configSettings.StorageDll == "OpenSim.DataStore.MonoSqlite.dll") | ||
353 | { | ||
354 | m_configSettings.StorageDll = "OpenSim.Data.SQLite.dll"; | ||
355 | m_log.Warn("WARNING: OpenSim.DataStore.MonoSqlite.dll is deprecated. Set storage_plugin to OpenSim.Data.SQLite.dll."); | ||
356 | Thread.Sleep(3000); | ||
357 | } | ||
358 | 352 | ||
359 | m_configSettings.StorageConnectionString | 353 | m_configSettings.StorageConnectionString |
360 | = startupConfig.GetString("storage_connection_string"); | 354 | = startupConfig.GetString("storage_connection_string"); |
diff --git a/OpenSim/Region/Framework/Interfaces/IRegionModule.cs b/OpenSim/Region/Framework/Interfaces/IRegionModule.cs index 8eb906c..e25a6e8 100644 --- a/OpenSim/Region/Framework/Interfaces/IRegionModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IRegionModule.cs | |||
@@ -30,6 +30,9 @@ using OpenSim.Region.Framework.Scenes; | |||
30 | 30 | ||
31 | namespace OpenSim.Region.Framework.Interfaces | 31 | namespace OpenSim.Region.Framework.Interfaces |
32 | { | 32 | { |
33 | /// <summary> | ||
34 | /// DEPRECATED! Use INonSharedRegionModule or ISharedRegionModule instead | ||
35 | /// </summary> | ||
33 | public interface IRegionModule | 36 | public interface IRegionModule |
34 | { | 37 | { |
35 | void Initialise(Scene scene, IConfigSource source); | 38 | void Initialise(Scene scene, IConfigSource source); |