mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-16 16:34:42 +00:00
DOC: fix a few typos
include/types/proto_http.h: hwen -> when include/types/server.h: SRV_ST_DOWN -> SRV_ST_STOPPED src/backend.c: prefer-current-server -> prefer-last-server Signed-off-by: Godbach <nylzhaowei@gmail.com>
This commit is contained in:
parent
e4e30f7d52
commit
f2dd68d0e0
@ -71,7 +71,7 @@
|
||||
|
||||
/* indicate how we *want* the connection to behave, regardless of what is in
|
||||
* the headers. We have 4 possible values right now :
|
||||
* - WANT_KAL : try to maintain keep-alive (default hwen nothing configured)
|
||||
* - WANT_KAL : try to maintain keep-alive (default when nothing configured)
|
||||
* - WANT_TUN : will be a tunnel (CONNECT).
|
||||
* - WANT_SCL : enforce close on the server side
|
||||
* - WANT_CLO : enforce close on both sides
|
||||
|
@ -43,7 +43,7 @@
|
||||
#include <types/checks.h>
|
||||
|
||||
|
||||
/* server states. Only SRV_ST_DOWN indicates a down server. */
|
||||
/* server states. Only SRV_ST_STOPPED indicates a down server. */
|
||||
enum srv_state {
|
||||
SRV_ST_STOPPED = 0, /* the server is down. Please keep set to zero. */
|
||||
SRV_ST_STARTING, /* the server is warming up (up but throttled) */
|
||||
|
@ -553,7 +553,7 @@ int assign_server(struct session *s)
|
||||
(__objt_server(conn->target)->nbpend + 1) < s->be->max_ka_queue))) &&
|
||||
srv_is_usable(__objt_server(conn->target))) {
|
||||
/* This session was relying on a server in a previous request
|
||||
* and the proxy has "option prefer-current-server" set, so
|
||||
* and the proxy has "option prefer-last-server" set, so
|
||||
* let's try to reuse the same server.
|
||||
*/
|
||||
srv = __objt_server(conn->target);
|
||||
|
Loading…
Reference in New Issue
Block a user