https://issues.apache.org/bugzilla/show_bug.cgi?id=49699
--- Comment #1 from Ryujiro Shibuya <[email protected]> 2010-08-03 23:28:28 EDT --- The connection seems closed indirectly through apr_pool_clear(), in the ap_proxy_release_connection() of proxy_util.c --- 1665 if (conn->close_on_recycle || conn->close || worker->disablereuse || 1666 !worker->is_address_reusable) { 1667 apr_pool_t *p = conn->pool; 1668 apr_pool_clear(p); --- At the line 1665, according to the debugger, conn->close_on_recycle == 0, conn->close == 0, worker->disablereuse == 0, worker->is_address_reusable == 0. I wonder why 'is_address_reusable' is set to 0, since I have not configured anything special to prohibit the reuse of the opened connection. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
