commit | 39af0f663dcac5b20fe219d4cc83810cea3e58ad | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Sat Mar 07 11:53:44 2009 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Sat Mar 07 11:53:44 2009 +0100 |
tree | f1935dded4d25cea05ec533584dd6deaf80d3195 | |
parent | 2ade30150545c06f47b83b4325a50371236adb8a [diff] |
[BUG] rate-limit in defaults section was ignored Just a missing initialisation of the field when creating a proxy.
diff --git a/src/cfgparse.c b/src/cfgparse.c index 5f1f0bb..f34d0e3 100644 --- a/src/cfgparse.c +++ b/src/cfgparse.c
@@ -681,6 +681,7 @@ if (curproxy->cap & PR_CAP_FE) { curproxy->maxconn = defproxy.maxconn; curproxy->backlog = defproxy.backlog; + curproxy->fe_maxsps = defproxy.fe_maxsps; /* initialize error relocations */ for (rc = 0; rc < HTTP_ERR_SIZE; rc++) {