Skip to content
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

Fix conformance test race condition #3350

Merged
merged 1 commit into from
Sep 20, 2024

Commits on Sep 20, 2024

  1. Fix conformance test race condition

    We had two tests that used an HTTPRoute called "http-route-4" which
    caused flaky tests because the first test's delete can (and sometimes
    does) happen after the second test's create, which means that the
    order of operations was:
    
    1. create http-route-4
    1. run first test
    1. cleanup first test - queue a delete of http-route-4
    1. set up second test - what should have been a create of http-route-4 becomes an update
    1. delete from first test deletes http-route-4
    1. second test fails
    caboteria committed Sep 20, 2024
    Configuration menu
    Copy the full SHA
    557c265 View commit details
    Browse the repository at this point in the history