Module: kamailio Branch: 4.3 Commit: 192294cc025f7b39efcd60c2053423ff10861d75 URL: https://github.com/kamailio/kamailio/commit/192294cc025f7b39efcd60c2053423ff...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2015-09-17T14:02:00+02:00
tm: warn in case of transaction is not suspended by a continue is attempted
(cherry picked from commit 33c5449563becd2357b648ec469ef247a6ae2f5d)
---
Modified: modules/tm/t_suspend.c
---
Diff: https://github.com/kamailio/kamailio/commit/192294cc025f7b39efcd60c2053423ff... Patch: https://github.com/kamailio/kamailio/commit/192294cc025f7b39efcd60c2053423ff...
---
diff --git a/modules/tm/t_suspend.c b/modules/tm/t_suspend.c index 0658e39..34ddb38 100644 --- a/modules/tm/t_suspend.c +++ b/modules/tm/t_suspend.c @@ -178,7 +178,7 @@ int t_continue(unsigned int hash_index, unsigned int label, }
if (!(t->flags & T_ASYNC_SUSPENDED)) { - LM_ERR("transaction is not suspended [%u:%u]\n", hash_index, label); + LM_WARN("transaction is not suspended [%u:%u]\n", hash_index, label); return -2; }