diff options
author | Adam Frisby | 2007-07-15 15:43:53 +0000 |
---|---|---|
committer | Adam Frisby | 2007-07-15 15:43:53 +0000 |
commit | 6d455f3b6c50a6fe35274db95e6f04ff4bcc1995 (patch) | |
tree | 3284554f182bb98515fd5c30c16161e845189961 /OpenSim/Region/Environment/Scenes | |
parent | * Added loading methods for NullStorage. (diff) | |
download | opensim-SC_OLD-6d455f3b6c50a6fe35274db95e6f04ff4bcc1995.zip opensim-SC_OLD-6d455f3b6c50a6fe35274db95e6f04ff4bcc1995.tar.gz opensim-SC_OLD-6d455f3b6c50a6fe35274db95e6f04ff4bcc1995.tar.bz2 opensim-SC_OLD-6d455f3b6c50a6fe35274db95e6f04ff4bcc1995.tar.xz |
* Storage Manager now initialises with a DB name equal to that of the region name, and DB file specified in the DataStore config item. Storage engines may ignore the DB name parameter.
* OnBackup event is now triggered using the Storage manager.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index 782c0fd..de39261 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -246,7 +246,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
246 | /// <returns></returns> | 246 | /// <returns></returns> |
247 | public bool Backup() | 247 | public bool Backup() |
248 | { | 248 | { |
249 | //eventManager.TriggerOnBackup(some engine); | 249 | EventManager.TriggerOnBackup(this.storageManager.DataStore); |
250 | return true; | 250 | return true; |
251 | } | 251 | } |
252 | #endregion | 252 | #endregion |