Reinstate setting timeout to never, the default 30 second timeout was causing problems with big migrations

This commit is contained in:
idb
2008-12-08 18:55:19 +00:00
parent 444436db15
commit 7e65697142

View File

@@ -137,7 +137,7 @@ namespace OpenSim.Data
int newversion = kvp.Key;
cmd.CommandText = kvp.Value;
// we need to up the command timeout to infinite as we might be doing long migrations.
//cmd.CommandTimeout = 0;
cmd.CommandTimeout = 0;
cmd.ExecuteNonQuery();
if (version == 0)