diff options
author | Justin Clarke Casey | 2008-06-01 01:34:46 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-06-01 01:34:46 +0000 |
commit | 15d41c2fc279f369f1f95e886ebaada94f558dcc (patch) | |
tree | b0265e63d29aeed628f6d44aff1e990188073af1 /OpenSim/Grid/InventoryServer | |
parent | * Put IScenePermissions out of its misery (diff) | |
download | opensim-SC_OLD-15d41c2fc279f369f1f95e886ebaada94f558dcc.zip opensim-SC_OLD-15d41c2fc279f369f1f95e886ebaada94f558dcc.tar.gz opensim-SC_OLD-15d41c2fc279f369f1f95e886ebaada94f558dcc.tar.bz2 opensim-SC_OLD-15d41c2fc279f369f1f95e886ebaada94f558dcc.tar.xz |
* Fix build break by eliminating remaining IScenePermissions references - must remember to nant clean
* Hook all server startups into base opensim server startup method
Diffstat (limited to 'OpenSim/Grid/InventoryServer')
-rw-r--r-- | OpenSim/Grid/InventoryServer/Main.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Grid/InventoryServer/Main.cs b/OpenSim/Grid/InventoryServer/Main.cs index ae76cd4..4300554 100644 --- a/OpenSim/Grid/InventoryServer/Main.cs +++ b/OpenSim/Grid/InventoryServer/Main.cs | |||
@@ -64,9 +64,10 @@ namespace OpenSim.Grid.InventoryServer | |||
64 | MainConsole.Instance = m_console; | 64 | MainConsole.Instance = m_console; |
65 | } | 65 | } |
66 | 66 | ||
67 | public void Startup() | 67 | public override void Startup() |
68 | { | 68 | { |
69 | m_log.Info("Initialising inventory manager..."); | 69 | base.Startup(); |
70 | |||
70 | m_config = new InventoryConfig(LogName, (Path.Combine(Util.configDir(), "InventoryServer_Config.xml"))); | 71 | m_config = new InventoryConfig(LogName, (Path.Combine(Util.configDir(), "InventoryServer_Config.xml"))); |
71 | 72 | ||
72 | m_inventoryService = new GridInventoryService(); | 73 | m_inventoryService = new GridInventoryService(); |