Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix conformance test race condition (#3350)
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
- Loading branch information