[Home]

Summary:ASTERISK-06684: AEL & macros
Reporter:Michael Strelnikov (michaels)Labels:
Date Opened:2006-04-03 08:16:27Date Closed:2006-07-06 11:17:55
Priority:MinorRegression?No
Status:Closed/CompleteComponents:PBX/pbx_ael
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:The macro is not returning with hangup.

macro call-one(num) {
   Dial(SIP/provider/${num},60,,,);
};
macro call-two(num) {
   &call-one(${num});
};
macro call-three(num) {
   &call-two(${num});
   NoOP(WE never get here if Dial is successful);
};

context test {
 123 => &call-three(123);
 h => NoOp(WE never get here);
};
Comments:By: Serge Vecher (serge-v) 2006-05-03 15:45:24

michaels: AEL just went through a major revamp in trunk. Is this issue present there?

By: Russell Bryant (russell) 2006-05-03 18:50:15

We have decided that since AEL was considered experimental in 1.2, and trunk contains a completely new implementation, that we are not going to be fixing any of the remaining issues in the 1.2 implementation.

If you try the implementation in the trunk and find any problems, please let us know!

Thanks