Commit 04989620 authored by Geoff Simmons's avatar Geoff Simmons

do not assert and die on failure of global message queue shutdown

parent fd6b67a9
......@@ -1000,7 +1000,8 @@ CHILD_Main(struct VSM_data *vd, int endless, int readconfig)
WRK_Halt();
WRK_Shutdown();
AZ(MQ_GlobalShutdown());
if ((errmsg = MQ_GlobalShutdown()) != NULL)
LOG_Log(LOG_ALERT, "Message queue shutdown failed: %s", errmsg);
if (config.monitor_interval > 0.0)
MON_StatusShutdown(monitor);
LOG_Log0(LOG_INFO, "Worker process exiting");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment