mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
* 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
This commit is contained in:
@@ -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
|
||||
/// </summary>
|
||||
override public void Initialise()
|
||||
{
|
||||
Initialise("URI=file:AssetStorage.db,version=3");
|
||||
Initialise("URI=file:Asset.db,version=3");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user