Skip to content

Commit

Permalink
core: more detailed error message when no config option to route requ…
Browse files Browse the repository at this point in the history
…ests
  • Loading branch information
miconda committed Aug 14, 2018
1 parent a295bff commit 4d9f342
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/receive.c
Expand Up @@ -306,7 +306,8 @@ int receive_msg(char *buf, unsigned int len, struct receive_info *rcv_info)
if(unlikely(main_rt.rlist[DEFAULT_RT] == NULL)) {
keng = sr_kemi_eng_get();
if(keng == NULL) {
LM_ERR("no config routing engine registered\n");
LM_ERR("no request_route {...} and no other config routing"
" engine registered\n");
goto error_req;
}
if(unlikely(cidlockset)) {
Expand Down

0 comments on commit 4d9f342

Please sign in to comment.