I’m trying to setup custom aliases out of a sql db
that will sometimes need to fork and need some help realizing how I can assign
q values and process them correctly. I’m using kam 1.5.
Let’s assume I query for our main support line and
return 3 URIs from the db along with a separate column for the q.
Sip:us-support@mycomp.com q=1.0
Sip:uk-support@mycomp.com q=1.0
Sip:in-support@mycomp.com q=0.90
Based on the values I’d want to parallel fork on the
first two to send this to my
If I were to just fork sequentially I could just load them
into avps and call it in a failure route, but how do I handle a combination of
the two? Am I wrong in trying to specify the q along with the URI?
I noticed serialize_branches was removed in 1.4, which is
what I use in production today in 1.3 – do I need to use the replacements
in TM to order them and add the branches?
Thanks in advance.