From 3791386d4d017c00c40c8768f9433e44f06e4bbb Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Fri, 15 May 2009 18:50:38 +0000 Subject: [PATCH] * Change default sqlite asset db back to Asset.db instead of AssetStorage.db * This inconsistency has actually existed for some time but only the recent change brought it to light * In the past, the default in ConfigurationLoader took precedence over the one in SQLiteAssetData --- OpenSim/Data/SQLite/SQLiteAssetData.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenSim/Data/SQLite/SQLiteAssetData.cs b/OpenSim/Data/SQLite/SQLiteAssetData.cs index 41a75a3363..ae60d24f1c 100644 --- a/OpenSim/Data/SQLite/SQLiteAssetData.cs +++ b/OpenSim/Data/SQLite/SQLiteAssetData.cs @@ -73,7 +73,7 @@ namespace OpenSim.Data.SQLite { if (dbconnect == string.Empty) { - dbconnect = "URI=file:AssetStorage.db,version=3"; + dbconnect = "URI=file:Asset.db,version=3"; } m_conn = new SqliteConnection(dbconnect); m_conn.Open(); @@ -334,7 +334,7 @@ namespace OpenSim.Data.SQLite /// override public void Initialise() { - Initialise("URI=file:AssetStorage.db,version=3"); + Initialise("URI=file:Asset.db,version=3"); } ///