summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorBenjamin Keith Ford <bford@digium.com>2017-07-05 12:44:18 -0500
committerBenjamin Keith Ford <bford@digium.com>2017-07-11 15:16:32 -0500
commit5d86da61a66989507e91bed4930a39faba97638a (patch)
tree25c092a79a7a329c06f2cbfd233b952471a7afb0 /apps
parent366971827ab2b76c701cb22609ed778cbf1828d2 (diff)
manager: Remove AMI "Queues" action.
When performing the "Queues" action via AMI, it outputs the same text that the Asterisk CLI outputs when running a "queue show" command, which does not conform with the AMI spec. "QueueStatus" already does what the "Queues" action should do, so instead of correcting the output, the "Queues" action will be removed and "QueueStatus" should be used instead. ASTERISK-27073 #close Reported by: Brian Change-Id: Id11743859758255b69cc3a557750d7a56c6d16f8
Diffstat (limited to 'apps')
-rw-r--r--apps/app_queue.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index f158a4caa..4fbd5f3c0 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -793,16 +793,6 @@
<ref type="function">QUEUE_MEMBER_PENALTY</ref>
</see-also>
</function>
- <manager name="Queues" language="en_US">
- <synopsis>
- Queues.
- </synopsis>
- <syntax>
- </syntax>
- <description>
- <para>Show queues information.</para>
- </description>
- </manager>
<manager name="QueueStatus" language="en_US">
<synopsis>
Show queue status.
@@ -9728,19 +9718,6 @@ static char *queue_show(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a
return __queues_show(NULL, a->fd, a->argc, a->argv);
}
-/*!\brief callback to display queues status in manager
- \addtogroup Group_AMI
- */
-static int manager_queues_show(struct mansession *s, const struct message *m)
-{
- static const char * const a[] = { "queue", "show" };
-
- __queues_show(s, -1, 2, a);
- astman_append(s, "\r\n\r\n"); /* Properly terminate Manager output */
-
- return RESULT_SUCCESS;
-}
-
static int manager_queue_rule_show(struct mansession *s, const struct message *m)
{
const char *rule = astman_get_header(m, "Rule");
@@ -11191,7 +11168,6 @@ static int unload_module(void)
ast_cli_unregister_multiple(cli_queue, ARRAY_LEN(cli_queue));
ast_manager_unregister("QueueStatus");
- ast_manager_unregister("Queues");
ast_manager_unregister("QueueRule");
ast_manager_unregister("QueueSummary");
ast_manager_unregister("QueueAdd");
@@ -11309,7 +11285,6 @@ static int load_module(void)
err |= ast_register_application_xml(app_upqm, upqm_exec);
err |= ast_register_application_xml(app_ql, ql_exec);
err |= ast_register_application_xml(app_qupd, qupd_exec);
- err |= ast_manager_register_xml("Queues", 0, manager_queues_show);
err |= ast_manager_register_xml("QueueStatus", 0, manager_queues_status);
err |= ast_manager_register_xml("QueueSummary", 0, manager_queues_summary);
err |= ast_manager_register_xml("QueueAdd", EVENT_FLAG_AGENT, manager_add_queue_member);