On Wed, Oct 31, 2007 at 12:36:21PM +0000, Nick Kew wrote: > On Wed, 31 Oct 2007 07:23:40 -0500 > "Blasdel, Jerry" <J.Blasdel@xxxxxxxxxxxxx> wrote: > > > I think we found our problem. Because our application can take a long > > time to generate reports, the developer had set the following: > > > > ProxyTimeout 2147483647 > > > > In Apache 2.2.2 this was fine. With Apache 2.2.6 I believe it was > > converting that value to a negative number so the proxy was timing out > > immediately. > > > > I adjusted this value down and it worked. > > Thanks for letting us know - saves me some head-scratching. > That smells like a possible change in the bundled APR, but > this list is probably not the best place to investigate that. > That is weird: define apr_time_from_sec(sec) ((apr_time_t)(sec) * APR_USEC_PER_SEC) ... timeout=atoi(arg); if (timeout<1) { return "Proxy Timeout must be at least 1 second."; } psf->timeout_set=1; psf->timeout=apr_time_from_sec(timeout); --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx