Skip to content

Commit

Permalink
static: Change assert to warning when cannot un-register table.
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Greear <greearb@candelatech.com>
  • Loading branch information
greearb committed Sep 18, 2012
1 parent 313ca1e commit e47ef88
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions xorp/static_routes/xrl_static_routes_node.cc
Expand Up @@ -1025,10 +1025,10 @@ XrlStaticRoutesNode::rib_client_send_delete_igp_table4_cb(
case COMMAND_FAILED:
//
// If a command failed because the other side rejected it, this is
// fatal.
//
XLOG_FATAL("Cannot deregister IPv4 IGP table with the RIB: %s",
xrl_error.str().c_str());
// bad, but perhaps not worth fatal if we just failed a delete.
// Maybe it was already gone for some reason...
XLOG_WARNING("Cannot deregister IPv4 IGP table with the RIB: %s",
xrl_error.str().c_str());
break;

case NO_FINDER:
Expand Down

0 comments on commit e47ef88

Please sign in to comment.