diff options
| author | Mark Stapp <mjs@voltanet.io> | 2020-06-09 15:05:16 -0400 |
|---|---|---|
| committer | Mark Stapp <mjs@voltanet.io> | 2020-06-10 08:14:08 -0400 |
| commit | bfab3241482769e75d7330a1980de6432651a877 (patch) | |
| tree | 83e2266413cd4a4117524181bb715ae391db0714 | |
| parent | bdabd4b958c5e769b243a548e0213b15bc05ca58 (diff) | |
tests: include lib/bgp.py convergence timeout to 130
The convergence timeout in lib/bgp.py was something like 40 secs;
that's not really long enough for the CI. Raise the timeout to
40 x 3 secs.
Signed-off-by: Mark Stapp <mjs@voltanet.io>
| -rw-r--r-- | tests/topotests/lib/bgp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/topotests/lib/bgp.py b/tests/topotests/lib/bgp.py index 69c807f300..2ba0c68c2f 100644 --- a/tests/topotests/lib/bgp.py +++ b/tests/topotests/lib/bgp.py @@ -868,7 +868,7 @@ def verify_router_id(tgen, topo, input_dict): return True -@retry(attempts=20, wait=2, return_is_str=True) +@retry(attempts=44, wait=3, return_is_str=True) def verify_bgp_convergence(tgen, topo, dut=None): """ API will verify if BGP is converged with in the given time frame. |
