Commit 06edbb67 authored by Ondrej Zajicek (work)'s avatar Ondrej Zajicek (work)
Browse files

Nest: Reset export route counter during graceful restart

Counter exp_routes is increased during initial route feed after GR
recovery, so it has to start with zero, otherwise BIRD will end with
double value in exp_routes.
parent bd22d7f4
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1260,6 +1260,7 @@ proto_want_export_down(struct proto *p)
    rt_feed_baby_abort(p);

  p->export_state = ES_DOWN;
  p->stats.exp_routes = 0;
  proto_unlink_ahooks(p);
}