aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/SQLiteRegionData.cs
diff options
context:
space:
mode:
authorAdam Frisby2008-05-01 14:45:56 +0000
committerAdam Frisby2008-05-01 14:45:56 +0000
commit4692e92312ceacf414629eb78f6d0725a2eb2ca5 (patch)
tree34da13ca5f7f19fc447f4fd341a43703183cfd55 /OpenSim/Data/SQLite/SQLiteRegionData.cs
parentUpdate svn properties. Minor formatting cleanup. (diff)
downloadopensim-SC_OLD-4692e92312ceacf414629eb78f6d0725a2eb2ca5.zip
opensim-SC_OLD-4692e92312ceacf414629eb78f6d0725a2eb2ca5.tar.gz
opensim-SC_OLD-4692e92312ceacf414629eb78f6d0725a2eb2ca5.tar.bz2
opensim-SC_OLD-4692e92312ceacf414629eb78f6d0725a2eb2ca5.tar.xz
* Assorted spring cleanings.
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/SQLite/SQLiteRegionData.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteRegionData.cs b/OpenSim/Data/SQLite/SQLiteRegionData.cs
index 5a3d350..ea12a48 100644
--- a/OpenSim/Data/SQLite/SQLiteRegionData.cs
+++ b/OpenSim/Data/SQLite/SQLiteRegionData.cs
@@ -30,6 +30,7 @@ using System.Collections.Generic;
30using System.Data; 30using System.Data;
31using System.IO; 31using System.IO;
32using System.Reflection; 32using System.Reflection;
33using System.Threading;
33using libsecondlife; 34using libsecondlife;
34using log4net; 35using log4net;
35using Mono.Data.SqliteClient; 36using Mono.Data.SqliteClient;
@@ -990,13 +991,13 @@ namespace OpenSim.Data.SQLite
990 991
991 m_log.Error("[REGION DB]: The land table was recently updated. You need to restart the simulator. Exiting now."); 992 m_log.Error("[REGION DB]: The land table was recently updated. You need to restart the simulator. Exiting now.");
992 993
993 System.Threading.Thread.Sleep(10000); 994 Thread.Sleep(10000);
994 995
995 // ICK! but it's better then A thousand red SQLITE error messages! 996 // ICK! but it's better then A thousand red SQLITE error messages!
996 Environment.Exit(0); 997 Environment.Exit(0);
997 998
998 } 999 }
999 catch (System.Exception) 1000 catch (Exception)
1000 { 1001 {
1001 // ICK! but it's better then A thousand red SQLITE error messages! 1002 // ICK! but it's better then A thousand red SQLITE error messages!
1002 m_log.Error("[REGION DB]: The land table was recently updated. You need to restart the simulator"); 1003 m_log.Error("[REGION DB]: The land table was recently updated. You need to restart the simulator");