Skip to content

Commit

Permalink
Merge "Increase ARP and ND retries up to 5 minutes" into R3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Oct 26, 2016
2 parents f05ec9d + 9b13da7 commit 6bda5c2
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
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
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 6bda5c2

Please sign in to comment.