comparison src/http/ngx_http_upstream_round_robin.c @ 364:a39aab45a53f NGINX_0_6_26

nginx 0.6.26 *) Bugfix: the "proxy_store" and "fastcgi_store" directives did not check a response length. *) Bugfix: a segmentation fault occurred in worker process, if big value was used in a "expires" directive. Thanks to Joaquin Cuenca Abela. *) Bugfix: nginx incorrectly detected cache line size on Pentium 4. Thanks to Gena Makhomed. *) Bugfix: in proxied or FastCGI subrequests a client original method was used instead of the GET method. *) Bugfix: socket leak in HTTPS mode if deferred accept was used. Thanks to Ben Maurer. *) Bugfix: nginx issued the bogus error message "SSL_shutdown() failed (SSL: )"; bug appeared in 0.6.23. *) Bugfix: in HTTPS mode requests might fail with the "bad write retry" error; bug appeared in 0.6.23.
author Igor Sysoev <http://sysoev.ru>
date Mon, 11 Feb 2008 00:00:00 +0300
parents e10168d6e371
children 6639b93e81b2
comparison
equal deleted inserted replaced
363:6999caedb665 364:a39aab45a53f
603 603
604 return n; 604 return n;
605 } 605 }
606 606
607 for (i = 0; i < peers->number; i++) { 607 for (i = 0; i < peers->number; i++) {
608 peer[i].current_weight += peer[i].weight; 608 peer[i].current_weight = peer[i].weight;
609 } 609 }
610 } 610 }
611 } 611 }
612 612
613 613