You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ch...@apache.org on 2006/12/07 23:45:16 UTC

svn commit: r483712 - /httpd/httpd/branches/2.2.x/STATUS

Author: chrisd
Date: Thu Dec  7 14:45:15 2006
New Revision: 483712

URL: http://svn.apache.org/viewvc?view=rev&rev=483712
Log:
propose mod_dbd fix to avoid excessive connections in single request

Modified:
    httpd/httpd/branches/2.2.x/STATUS

Modified: httpd/httpd/branches/2.2.x/STATUS
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/STATUS?view=diff&rev=483712&r1=483711&r2=483712
==============================================================================
--- httpd/httpd/branches/2.2.x/STATUS (original)
+++ httpd/httpd/branches/2.2.x/STATUS Thu Dec  7 14:45:15 2006
@@ -258,6 +258,8 @@
    * mod_headers: support regexp-based manipulation
      http://svn.apache.org/viewvc?view=rev&revision=452330
      +1: niq, chrisd, wrowe
+     chrisd: Note that the docs need to be back-ported, and
+             new_features_2_4.xml revised too.
 
    * mod_ldap: Better detection and clean up of ldap connection
      that have been terminated by the ldap server.
@@ -289,4 +291,13 @@
      wrowe notes: 26 bytes is absurdly posix-unix and english specific,
                   don't you think?  grow the error text pad to a sane
                   width before backporting, please.
+
+   * mod_dbd: Stash DBD connections in request_config of initial request
+     only, or else sub-requests and internal redirections may cause
+     entire DBD pool to be stashed in a single HTTP request.
+     Trunk version of patch:
+       http://svn.apache.org/viewvc?view=rev&revision=481509
+     2.2.x version of patch:
+       Trunk vresion works
+     +1: chrisd