b5044b5760
When haproxy is launched in a background and in a subshell (see example below), according to POSIX standard (2.11. Signals and Error Handling), it inherits from the subshell SIG_IGN signal handler for SIGINT and SIGQUIT. $ (./haproxy -f env4.cfg &) So, when haproxy is lanched like this, it doesn't stop upon receiving the SIGINT. This can be a root cause of some unexpected timeouts, when haproxy is started under VTest, as VTest sends to the process SIGINT in order to terminate it. To fix this, let's explicitly register the default signal handler for the SIGINT in signal_init() initcall. This should be backported in all stable versions. (cherry picked from commit d3c20b02469dea6f46369bb91965d8b4924bb2b7) Signed-off-by: Willy Tarreau <w@1wt.eu> (cherry picked from commit a78b02f37d70366ef5afd308de48e8e2c4b54b4a) Signed-off-by: Christopher Faulet <cfaulet@haproxy.com> |
||
---|---|---|
.github | ||
addons | ||
admin | ||
dev | ||
doc | ||
examples | ||
include | ||
reg-tests | ||
scripts | ||
src | ||
tests | ||
.cirrus.yml | ||
.gitattributes | ||
.gitignore | ||
.mailmap | ||
.travis.yml | ||
BRANCHES | ||
BSDmakefile | ||
CHANGELOG | ||
CONTRIBUTING | ||
INSTALL | ||
LICENSE | ||
MAINTAINERS | ||
Makefile | ||
README | ||
SUBVERS | ||
VERDATE | ||
VERSION |
The HAProxy documentation has been split into a number of different files for ease of use. Please refer to the following files depending on what you're looking for : - INSTALL for instructions on how to build and install HAProxy - BRANCHES to understand the project's life cycle and what version to use - LICENSE for the project's license - CONTRIBUTING for the process to follow to submit contributions The more detailed documentation is located into the doc/ directory : - doc/intro.txt for a quick introduction on HAProxy - doc/configuration.txt for the configuration's reference manual - doc/lua.txt for the Lua's reference manual - doc/SPOE.txt for how to use the SPOE engine - doc/network-namespaces.txt for how to use network namespaces under Linux - doc/management.txt for the management guide - doc/regression-testing.txt for how to use the regression testing suite - doc/peers.txt for the peers protocol reference - doc/coding-style.txt for how to adopt HAProxy's coding style - doc/internals for developer-specific documentation (not all up to date)