Skip to content

Commit

Permalink
Merge "Increase ARP and ND retries up to 5 minutes" into R3.0.3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Oct 25, 2016
2 parents 2c23681 + 668ee66 commit 2de81c4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/vnsw/agent/services/arp_proto.h
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ struct ArpVrfState : public DBState {

class ArpDBState : public DBState {
public:
static const uint32_t kMaxRetry = 30;
static const uint32_t kMaxRetry = 30 * 5; //retries upto 5 minutes,
//30 tries/per minutes
static const uint32_t kTimeout = 2000;
typedef std::map<uint32_t, uint32_t> WaitForTrafficIntfMap;

Expand Down
5 changes: 3 additions & 2 deletions src/vnsw/agent/services/icmpv6_proto.h
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,9 @@ class Icmpv6VrfState : public DBState {

class Icmpv6RouteState : public DBState {
public:
static const uint32_t kMaxRetry = 20;
static const uint32_t kTimeout = 1000;
static const uint32_t kMaxRetry = 30 * 5; //retries upto 5 minutes,
//30 tries/per minutes
static const uint32_t kTimeout = 2000;
typedef std::map<uint32_t, uint32_t> WaitForTrafficIntfMap;

Icmpv6RouteState(Icmpv6VrfState *vrf_state, uint32_t vrf_id,
Expand Down

0 comments on commit 2de81c4

Please sign in to comment.