[BUG] peers: the peer frontend must not emit any log
Peers' frontends must have logging disabled by default, which was not
the case, so logs were randomly emitted upon restart, sometimes causing
a new process to fail to replace the old one.
diff --git a/src/cfgparse.c b/src/cfgparse.c
index 45d9677..f63c615 100644
--- a/src/cfgparse.c
+++ b/src/cfgparse.c
@@ -1040,7 +1040,6 @@
defproxy.state = PR_STNEW;
defproxy.maxconn = cfg_maxpconn;
defproxy.conn_retries = CONN_RETRIES;
- defproxy.logfac1 = defproxy.logfac2 = -1; /* log disabled */
defproxy.defsrv.inter = DEF_CHKINTR;
defproxy.defsrv.fastinter = 0;
diff --git a/src/proxy.c b/src/proxy.c
index 9409d55..7bbc6a7 100644
--- a/src/proxy.c
+++ b/src/proxy.c
@@ -415,7 +415,7 @@
/* Perform the most basic initialization of a proxy :
* memset(), list_init(*), reset_timeouts(*).
- * Any new proxy should be initialized via this function.
+ * Any new proxy or peer should be initialized via this function.
*/
void init_new_proxy(struct proxy *p)
{
@@ -440,6 +440,7 @@
/* Timeouts are defined as -1 */
proxy_reset_timeouts(p);
p->tcp_rep.inspect_delay = TICK_ETERNITY;
+ p->logfac1 = p->logfac2 = -1; /* log disabled */
}
/*