Hi Gang
I have a strange issue after upgrading to 5.7
I use dlg_vars to keep some information until the end of the call to write them in a CDR.
One of those variables records the timestamp of the first invite to determine how long it took from the invite to the 'connection established' if at all.
The CDR is written when the BYE is being processed by the dialog module.
Strangely, since updating to 5.7 (used to work with 5.5 and 5.6 I think, but I could be mistaking as other changes were made to the config) my dialog variables are null when BYE is being processed.
reading the docs, I learned that that dlg_var are only polulated after loose_route() has been called.
So I added some logging statement to track if the BYE in question is processed by loose_route().
Yes, it is, loose_route() returns success on the BYE in question. But when I log the content of my dlg_var after loose_route() it is still null.
Any idea what the cause could be?