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

0.6.1-post-fixes
idb 2008-12-08 18:55:19 +00:00
parent 444436db15
commit 7e65697142
1 changed files with 1 additions and 1 deletions

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)