Browse Source

WHISTLE-1125: if at the end of our failover routine we are still getting a 404 overwrite it with 486

3.12
karl anderson 14 years ago
parent
commit
8e6a481413
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      opensips/opensips.tmp

+ 10
- 0
opensips/opensips.tmp View File

@ -964,6 +964,16 @@ failure_route[internal_fault]
exit();
}
else if (t_check_status("404"))
{
xlog("L_ERR", "$ci|log|no other media servers avaliable, sending 486");
cache_remove("local", "$ci-failure");
send_reply("486", "Not found");
exit();
}
else
{
cache_remove("local", "$ci-failure");


Loading…
Cancel
Save