The Bugzilla import script keeps hitting timeout errors and stopping. They either dump the info below, or else a report of a 500 status from the web server. This is making the import a pain because every ten minutes or so I have to babysit the importer and start it again from the last bug that it failed on.
Error: The request timed out
Stack Trace: Hide Stack Trace
System.Net.WebException: The request timed out
at System.Net.HttpWebRequest.EndGetResponse (IAsyncResult asyncResult) [0x00000]
at System.Net.HttpWebRequest.GetResponse () [0x00000]
at Wasabi.Runtime.Xml.ServerXmlHttp.Send (System.String postData) [0x00000]
I have already edited the MySQL configuration to increase the database connection timeout; but from the stack here this looks like it's related to HTTP fetching (from Bugzilla?) Is there a setting I can change to increase this timeout?
The importer doesn't show up in the stack trace, but I assume the lines that lead to that Send call are:
Dim xmlHTTP = New ServerXmlHttp
xmlHTTP.Open "GET", sURL, False
xmlHTTP.Send
The server's on Linux (CentOS), btw.