mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 11:58:52 +00:00
app_queue: Log reason for PAUSEALL/UNPAUSEALL
We needed the reason for our reporting when agents pause/unpause all of their queues at once. This is a small, simple patch that adds a reason for PAUSEALL and UNPAUSEALL. I have been using it in production for years. ASTERISK-26920 #close Change-Id: Ifb3f0d1a0abd5194253d9794023546e1395baf3d
This commit is contained in:
committed by
Richard Mudgett
parent
380973cc47
commit
fac5115c43
5
CHANGES
5
CHANGES
@@ -12,6 +12,11 @@
|
||||
--- Functionality changes from Asterisk 14 to Asterisk 15 --------------------
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
app_queue
|
||||
------------------
|
||||
* PAUSEALL/UNPAUSEALL now sets the pause reason in the queue_log if it has
|
||||
been defined.
|
||||
|
||||
------------------------------------------------------------------------------
|
||||
--- Functionality changes from Asterisk 14.4.0 to Asterisk 14.5.0 ------------
|
||||
------------------------------------------------------------------------------
|
||||
|
@@ -7332,7 +7332,7 @@ static int set_member_paused(const char *queuename, const char *interface, const
|
||||
* but since this affects all queues, we cannot.
|
||||
*/
|
||||
ast_queue_log("NONE", "NONE", mem->membername,
|
||||
(paused ? "PAUSEALL" : "UNPAUSEALL"), "%s", "");
|
||||
(paused ? "PAUSEALL" : "UNPAUSEALL"), "%s", S_OR(reason, ""));
|
||||
}
|
||||
|
||||
set_queue_member_pause(q, mem, reason, paused);
|
||||
|
Reference in New Issue
Block a user