* Introduce experimental wait timeout checking to mysql region datastore code 
* This should mean that if the mysql connection has timed out, we should automatically reconnect and not fail or drop queries on region database manipulations
This commit is contained in:
Justin Clarke Casey
2008-06-29 18:10:38 +00:00
parent 7917398451
commit 31c63558c8
2 changed files with 95 additions and 19 deletions

View File

@@ -191,7 +191,7 @@ namespace OpenSim.Data.MySQL
{
m_log.ErrorFormat(
"[ASSETS DB]: MySql failure fetching asset {0}" + Environment.NewLine + e.ToString()
+ Environment.NewLine + "Attempting reconnection", assetID);
+ Environment.NewLine + "Reconnecting", assetID);
_dbConnection.Reconnect();
}
}