-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tests: Fix route-scale at higher ecmp #16680
tests: Fix route-scale at higher ecmp #16680
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
more waiting more good
Whoops - looks like there's a python style fix needed? |
@@ -119,7 +119,7 @@ def run_one_setup(r1, s): | |||
count = d["rib"] | |||
break | |||
|
|||
logger.info("Testing {} routes X {} ecmp".format(count, s["ecmp"])) | |||
logger.info("Testing {} routes X {} ecmp, waiting {} retries {}".format(count, s["ecmp"], wait, retries)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks like this need to be styled?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
Recent commits moved the default retries to 60, but the higher ecmp counts were over-riding to 40. Let's make it 80. Noticed this when I went looking at failures on 386 platforms in our ci. Route scale is timing out when deleting routes. Signed-off-by: Donald Sharp <[email protected]>
46ccc26
to
ce74a6b
Compare
something went wrong with the CI. After rerun, all tests passed, but it still shows as failed! going for a 2nd rerun just to make sure |
ci:rerun |
Merging - don't know what's up with CI today |
Recent commits moved the default retries to 60, but the higher ecmp counts were over-riding to 40. Let's make it 80.
Noticed this when I went looking at failures on 386 platforms in our ci. Route scale is timing out when deleting routes.