Hi, This patch fixes a typo in an error message that can be seen by the end user when the haproxy subsystem runs out of memory.
Thanks Joseph
From 60babb1440788215ff86323c7f98d930b5d643eb Mon Sep 17 00:00:00 2001 From: Joseph Herlant <[email protected]> Date: Thu, 15 Nov 2018 10:43:05 -0800 Subject: [PATCH] MINOR: Fix an error message thrown when we run out of memory Fixes a typo in an error message that can be seen by the end user when the haproxy subsystem runs out of memory. --- src/haproxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/haproxy.c b/src/haproxy.c index 50774c3a..13182228 100644 --- a/src/haproxy.c +++ b/src/haproxy.c @@ -764,7 +764,7 @@ static void mworker_reload() return; alloc_error: - ha_warning("Failed to reexecute the master processs [%d]: Cannot allocate memory\n", pid); + ha_warning("Failed to reexecute the master process [%d]: Cannot allocate memory\n", pid); return; } -- 2.19.1

