mirror of
https://github.com/nginx/nginx.git
synced 2025-06-11 04:12:40 +08:00
Modules compatibility: slow start fields.
This commit is contained in:
parent
07c914c0cb
commit
f3ece60723
@ -98,6 +98,7 @@ typedef struct {
|
||||
ngx_uint_t max_conns;
|
||||
ngx_uint_t max_fails;
|
||||
time_t fail_timeout;
|
||||
ngx_msec_t slow_start;
|
||||
|
||||
unsigned down:1;
|
||||
unsigned backup:1;
|
||||
|
@ -35,6 +35,8 @@ struct ngx_http_upstream_rr_peer_s {
|
||||
|
||||
ngx_uint_t max_fails;
|
||||
time_t fail_timeout;
|
||||
ngx_msec_t slow_start;
|
||||
ngx_msec_t start_time;
|
||||
|
||||
ngx_uint_t down; /* unsigned down:1; */
|
||||
|
||||
|
@ -54,6 +54,7 @@ typedef struct {
|
||||
ngx_uint_t max_conns;
|
||||
ngx_uint_t max_fails;
|
||||
time_t fail_timeout;
|
||||
ngx_msec_t slow_start;
|
||||
|
||||
unsigned down:1;
|
||||
unsigned backup:1;
|
||||
|
@ -35,6 +35,8 @@ struct ngx_stream_upstream_rr_peer_s {
|
||||
|
||||
ngx_uint_t max_fails;
|
||||
time_t fail_timeout;
|
||||
ngx_msec_t slow_start;
|
||||
ngx_msec_t start_time;
|
||||
|
||||
ngx_uint_t down; /* unsigned down:1; */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user