aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLMigrations.cs
diff options
context:
space:
mode:
authorMelanie2010-05-19 02:47:31 +0100
committerMelanie2010-05-19 02:47:31 +0100
commitdedc0c0bd4ebdf6f8af056c63c7aeeed70b39627 (patch)
tree8bbef7da74c0d590e8cb996a127286b859db0554 /OpenSim/Data/MySQL/MySQLMigrations.cs
parentAllow migration steps to fail again without bringing down the house (diff)
downloadopensim-SC_OLD-dedc0c0bd4ebdf6f8af056c63c7aeeed70b39627.zip
opensim-SC_OLD-dedc0c0bd4ebdf6f8af056c63c7aeeed70b39627.tar.gz
opensim-SC_OLD-dedc0c0bd4ebdf6f8af056c63c7aeeed70b39627.tar.bz2
opensim-SC_OLD-dedc0c0bd4ebdf6f8af056c63c7aeeed70b39627.tar.xz
Revert "Allow migration steps to fail again without bringing down the house"
This reverts commit 167db502593de5f535d8c322005c63ef263940ed.
Diffstat (limited to 'OpenSim/Data/MySQL/MySQLMigrations.cs')
-rw-r--r--OpenSim/Data/MySQL/MySQLMigrations.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/MySQLMigrations.cs b/OpenSim/Data/MySQL/MySQLMigrations.cs
index a1f7844..959b5d0 100644
--- a/OpenSim/Data/MySQL/MySQLMigrations.cs
+++ b/OpenSim/Data/MySQL/MySQLMigrations.cs
@@ -77,7 +77,7 @@ namespace OpenSim.Data.MySQL
77 { 77 {
78 m_log.ErrorFormat("[MySQL MIGRATION]: Error {0}", args.Exception.Message); 78 m_log.ErrorFormat("[MySQL MIGRATION]: Error {0}", args.Exception.Message);
79 m_log.ErrorFormat("[MySQL MIGRATION]: In SQL: {0}", args.StatementText); 79 m_log.ErrorFormat("[MySQL MIGRATION]: In SQL: {0}", args.StatementText);
80 m_log.Error("[MySQL MIGRATION]: The above migration failed to complete. This may cause errors in your install, but could also be normal. Continuing."); 80 throw args.Exception;
81 }; 81 };
82 scr.Execute(); 82 scr.Execute();
83 } 83 }