aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMelanie2010-11-16 10:22:15 +0000
committerMelanie2010-11-16 10:22:15 +0000
commite7e3c74fb738ed922905c465d6f1efac416ef2e8 (patch)
treea98edb0028676fe4132248bdb3f508d2e57be202
parentCan't detach an object from within the script thread because it will throw. U... (diff)
parentFix: Write asset data into Asset.db when using SQLite (diff)
downloadopensim-SC_OLD-e7e3c74fb738ed922905c465d6f1efac416ef2e8.zip
opensim-SC_OLD-e7e3c74fb738ed922905c465d6f1efac416ef2e8.tar.gz
opensim-SC_OLD-e7e3c74fb738ed922905c465d6f1efac416ef2e8.tar.bz2
opensim-SC_OLD-e7e3c74fb738ed922905c465d6f1efac416ef2e8.tar.xz
Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs5
-rw-r--r--bin/config-include/storage/SQLiteLegacyStandalone.ini3
-rw-r--r--bin/config-include/storage/SQLiteStandalone.ini3
3 files changed, 9 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 4aa19d1..8d85d1a 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -651,8 +651,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
651 catch (Exception e) 651 catch (Exception e)
652 { 652 {
653 // Make sure that we see any exception caused by the asynchronous operation. 653 // Make sure that we see any exception caused by the asynchronous operation.
654 m_log.Error( 654 m_log.ErrorFormat(
655 string.Format("[LLCLIENTVIEW]: Caught exception while processing {0}", packetObject.Pack), e); 655 "[LLCLIENTVIEW]: Caught exception while processing {0} for {1}, {2} {3}",
656 packetObject.Pack, Name, e.Message, e.StackTrace);
656 } 657 }
657 } 658 }
658 659
diff --git a/bin/config-include/storage/SQLiteLegacyStandalone.ini b/bin/config-include/storage/SQLiteLegacyStandalone.ini
index facbbd6..ffe9a70 100644
--- a/bin/config-include/storage/SQLiteLegacyStandalone.ini
+++ b/bin/config-include/storage/SQLiteLegacyStandalone.ini
@@ -4,6 +4,9 @@
4 StorageProvider = "OpenSim.Data.SQLiteLegacy.dll" 4 StorageProvider = "OpenSim.Data.SQLiteLegacy.dll"
5 ConnectionString = "URI=file:OpenSim.db,version=3,UseUTF16Encoding=True" 5 ConnectionString = "URI=file:OpenSim.db,version=3,UseUTF16Encoding=True"
6 6
7[AssetService]
8 ConnectionString = "URI=file:Asset.db,version=3"
9
7[AvatarService] 10[AvatarService]
8 ConnectionString = "URI=file:avatars.db,version=3" 11 ConnectionString = "URI=file:avatars.db,version=3"
9 12
diff --git a/bin/config-include/storage/SQLiteStandalone.ini b/bin/config-include/storage/SQLiteStandalone.ini
index 10e6991..c1de71a 100644
--- a/bin/config-include/storage/SQLiteStandalone.ini
+++ b/bin/config-include/storage/SQLiteStandalone.ini
@@ -4,6 +4,9 @@
4 StorageProvider = "OpenSim.Data.SQLite.dll" 4 StorageProvider = "OpenSim.Data.SQLite.dll"
5 ConnectionString = "URI=file:OpenSim.db,version=3,UseUTF16Encoding=True" 5 ConnectionString = "URI=file:OpenSim.db,version=3,UseUTF16Encoding=True"
6 6
7[AssetService]
8 ConnectionString = "URI=file:Asset.db,version=3"
9
7[InventoryService] 10[InventoryService]
8 ;ConnectionString = "URI=file:inventory.db,version=3" 11 ;ConnectionString = "URI=file:inventory.db,version=3"
9 ; if you have a legacy inventory store use the connection string below 12 ; if you have a legacy inventory store use the connection string below