MINOR: mworker: ReloadFailed shown depending on failedreload
The ReloadFailed prompt in the master CLI is shown only when
failedreloads > 0. It was previously using a check on the wait mode, but
we always use the wait mode now.
diff --git a/src/cli.c b/src/cli.c
index 36d11a4..ec5283f 100644
--- a/src/cli.c
+++ b/src/cli.c
@@ -44,6 +44,7 @@
#include <haproxy/list.h>
#include <haproxy/listener.h>
#include <haproxy/log.h>
+#include <haproxy/mworker.h>
#include <haproxy/mworker-t.h>
#include <haproxy/pattern-t.h>
#include <haproxy/peers.h>
@@ -2067,7 +2068,7 @@
} else {
if (s->pcli_next_pid == 0)
chunk_appendf(msg, "master%s> ",
- (global.mode & MODE_MWORKER_WAIT) ? "[ReloadFailed]" : "");
+ (proc_self->failedreloads > 0) ? "[ReloadFailed]" : "");
else
chunk_appendf(msg, "%d> ", s->pcli_next_pid);
}