]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: defaults: update MASTER_MAXCONN description
authorValentine Krasnobaeva <vkrasnobaeva@haproxy.com>
Tue, 9 Jul 2024 12:01:51 +0000 (14:01 +0200)
committerWilly Tarreau <w@1wt.eu>
Wed, 16 Oct 2024 20:02:39 +0000 (22:02 +0200)
This is a one of the commits to prepare the removal of MODE_MWORKER_WAIT
support, as it became redundant with MODE_MWORKER due to moving master-worker
fork in init().

include/haproxy/defaults.h

index baafe219c01e4ff87f3fa1807f25ce6c4931138a..88ab35b467d3ca4095866bb181fa1b1e9eb276c3 100644 (file)
 #define DEFAULT_MAXFD 1048576
 #endif
 
-/* Define a maxconn which will be used in the master process once it re-exec to
- * the MODE_MWORKER_WAIT and won't change when SYSTEM_MAXCONN is set.
- *
- * 100 must be enough for the master since it only does communication between
- * the master and the workers, and the master CLI.
+/* Define a maxconn which will be used in the master process and won't change
+ * when SYSTEM_MAXCONN is set. 100 must be enough for the master since it only
+ * does communication between the master and the workers, and the master CLI.
  */
 #ifndef MASTER_MAXCONN
 #define MASTER_MAXCONN 100