Perrin Harkins wrote: > > > That was it. The child exited immediately when I hit the limit with > > KeepAlive Off. Now the question is: Is there a way to force an exit > even > > with KeepAlive On? > > As Jay already pointed out, you usually don't want KeepAlive on with > mod_perl. However, you could try changing the call > $r->child_terminate() to Apache::exit(). If this seems to work better > for you, let me know and I'll consider changing this in a future release > of Apache::SizeLimit.
what about $r->headers_out->add(Connection => 'close'); IIRC someone pointed out recently (well, 6 months ago :) that that would work... --Geoff