Skip to content
Snippets Groups Projects
Commit 36878ed1 authored by Matthew Jordan's avatar Matthew Jordan
Browse files

build_tools: Skip managerEvent combining for AMI action responses

AMI action responses can (and will) reference AMI events that they return.
These event references and definitions should not be combined with AMI events
raised elsewhere in the code, as they are specifically tied to the AMI action
that raised them.

ASTERISK-24156 #close
Reported by: Rusty Newton


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@420289 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent a6fae305
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,10 @@ def collapse_event_pair(managerEventOne, managerEventTwo):
def collapse_manager_events(rootNode, managerEvents):
events = {}
for managerEvent in managerEvents:
rootNode.removeChild(managerEvent)
if (managerEvent.parentNode.nodeName == 'list-elements'
or managerEvent.parentNode.nodeName == 'responses'):
continue
managerEvent.parentNode.removeChild(managerEvent)
attr = managerEvent.getAttribute('name')
if attr in events:
# match, collapse the two managerEvents
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment