diff options
author | Teravus Ovares | 2009-07-10 21:47:54 +0000 |
---|---|---|
committer | Teravus Ovares | 2009-07-10 21:47:54 +0000 |
commit | d54aac41d296f4ba74ef5f9a33bfd25a86cc198b (patch) | |
tree | 544c7da4f1254349c5cb330bb0b60458312fd668 /OpenSim/Region/Framework | |
parent | Some module reshuffling, no user functionality yet (diff) | |
download | opensim-SC_OLD-d54aac41d296f4ba74ef5f9a33bfd25a86cc198b.zip opensim-SC_OLD-d54aac41d296f4ba74ef5f9a33bfd25a86cc198b.tar.gz opensim-SC_OLD-d54aac41d296f4ba74ef5f9a33bfd25a86cc198b.tar.bz2 opensim-SC_OLD-d54aac41d296f4ba74ef5f9a33bfd25a86cc198b.tar.xz |
* Added a user friendly message to the sqlite regionsettings saver giving them troubleshooting options and telling them to restart the simulator. This situation, hopefully is temporary and generates an exception when sqlite users first start OpenSimulator because of an unexpected condition in the database layer. Restart and all is well.
* Added a user friendly message to the 'No IInventoryService available' condition with troubleshooting options.
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index c9fd6b5..92cea43 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -158,7 +158,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
158 | 158 | ||
159 | if (m_InventoryService == null) | 159 | if (m_InventoryService == null) |
160 | { | 160 | { |
161 | throw new Exception("No IInventoryService available."); | 161 | throw new Exception("No IInventoryService available. This could happen if the config_include folder doesn't exist or if the OpenSim.ini [Architecture] section isn't set. Please also check that you have the correct version of your inventory service dll. Sometimes old versions of this dll will still exist. Do a clean checkout and re-create the opensim.ini from the opensim.ini.example."); |
162 | } | 162 | } |
163 | } | 163 | } |
164 | 164 | ||