You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@httpd.apache.org by bu...@apache.org on 2005/12/02 12:26:48 UTC

DO NOT REPLY [Bug 37753] New: - [PATCH]mod_proxy_balancer Stickysession that uses URL doesn't move

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=37753>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=37753

           Summary: [PATCH]mod_proxy_balancer Stickysession that uses URL
                    doesn't move
           Product: Apache httpd-2.0
           Version: 2.2.0
          Platform: All
        OS/Version: All
            Status: NEW
          Keywords: PatchAvailable
          Severity: major
          Priority: P1
         Component: mod_proxy_balancer
        AssignedTo: bugs@httpd.apache.org
        ReportedBy: ko@yappo.ne.jp


It doesn't move in stickysession when not Cookie but URL is used when 
stickysession of the ProxyPass directive is specified when mod_proxy_balancer 
is used. 

Patch that enables operation is put up to the following. 
Please apply it to mod_proxy_bakancer.c. 

--- mod_proxy_balancer-old.c    2005-12-02 20:04:48.000000000 +0900
+++ mod_proxy_balancer.c        2005-12-02 20:05:51.000000000 +0900
@@ -113,7 +113,7 @@
     char *path = NULL;

     for (path = strstr(url, name); path; path = strstr(path + 1, name)) {
-        path += (strlen(name) + 1);
+        path += strlen(name);
         if (*path == '=') {
             /*
              * Session path was found, get it's value

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org