THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#158 - Changing R-URI in dialog-info PUBLISH in event_route[tm:local-request]
User who did this - Daniel-Constantin Mierla (miconda)
----------
I will compare with 3.1.4, but nothing should have been affected in this regard iirc.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=158#comment327
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#171 - Kamailio hangs on start after dialog module reads variables from database
User who did this - Daniel-Constantin Mierla (miconda)
----------
Timo, it happens to firewalled that cannot get ssh working for the moment. You can go ahead an commit wherever it applies, as said above.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=171#comment326
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#171 - Kamailio hangs on start after dialog module reads variables from database
User who did this - Timo Reimann (tr)
----------
FYI, you should only need to backport to 3.2 as older Kamailio versions didn't have dialog variables yet.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=171#comment325
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#171 - Kamailio hangs on start after dialog module reads variables from database
User who did this - Nick Altmann (nikbyte)
----------
Yes, I've changed continue to break and it works!!! Thank you!!!
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=171#comment324
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#171 - Kamailio hangs on start after dialog module reads variables from database
User who did this - Daniel-Constantin Mierla (miconda)
----------
If that's the right solution, go ahead a commit in all branches it applies. Thanks!
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=171#comment323
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#171 - Kamailio hangs on start after dialog module reads variables from database
User who did this - Timo Reimann (tr)
----------
Ah nice Daniel, quick fix.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=171#comment322
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#171 - Kamailio hangs on start after dialog module reads variables from database
User who did this - Timo Reimann (tr)
----------
Another note: You may want to type in "continue" after the final step and repeat steps 4) to 5) to see if it really hangs or is stuck inside a loop. If the former is the case, you should see the same instruction currently executed, otherwise it'll most likely be a different one.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=171#comment321
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#171 - Kamailio hangs on start after dialog module reads variables from database
User who did this - Daniel-Constantin Mierla (miconda)
----------
I think is due to a wrong continue in the inner while(dlg) -- imo it should be a break:
diff --git a/modules_k/dialog/dlg_db_handler.c b/modules_k/dialog/dlg_db_handler.c
index c0b8fbc..a9b38ef 100644
--- a/modules_k/dialog/dlg_db_handler.c
+++ b/modules_k/dialog/dlg_db_handler.c
@@ -527,7 +527,7 @@ static int load_dialog_vars_from_db(int fetch_num_rows)
while (dlg) {
if (dlg->h_id == VAL_INT(values+1)) {
set_dlg_variable_unsafe(dlg, &VAL_STR(values+2), &VAL_STR(values+3));
- continue;
+ break;
}
dlg = dlg->next;
if (!dlg) {
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=171#comment320
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#171 - Kamailio hangs on start after dialog module reads variables from database
User who did this - Timo Reimann (tr)
----------
Nick, thanks for reporting. Could you please carry out the following procedure to track down the root cause:
1) Start Kamailio from gdb (you can pass on command-line switches doing "gdb ./kamailio --args <your args>").
2) Enter "run" to start Kamailio.
3) Let it run until the hang occurs.
4) Hit CTRL+C to cease execution.
5) Display the full backtrace with "bt full".
Please post the outcome of the final step.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=171#comment319
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#171 - Kamailio hangs on start after dialog module reads variables from database
User who did this - Nick Altmann (nikbyte)
----------
version: kamailio 3.2.0 (x86_64/linux) 94d3b8
flags: STATS: Off, USE_IPV6, USE_TCP, USE_TLS, TLS_HOOKS, USE_RAW_SOCKS, DISABLE_NAGLE, USE_MCAST, DNS_IP_HACK, SHM_MEM, SHM_MMAP, PKG_MALLOC, DBG_QM_MALLOC, USE_FUTEX, FAST_LOCK-ADAPTIVE_WAIT, USE_DNS_CACHE, USE_DNS_FAILOVER, USE_NAPTR, USE_DST_BLACKLIST, HAVE_RESOLV_RES
ADAPTIVE_WAIT_LOOPS=1024, MAX_RECV_BUFFER_SIZE 262144, MAX_LISTEN 16, MAX_URI_SIZE 1024, BUF_SIZE 65535, DEFAULT PKG_SIZE 4MB
poll method support: poll, epoll_lt, epoll_et, sigio_rt, select.
id: 94d3b8
compiled on 11:42:51 Oct 28 2011 with gcc 4.5.1
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=171#comment318
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.