Closed slintes closed 4 months ago
@slintes: The following tests failed, say /retest
to rerun all failed tests or /retest-required
to rerun all mandatory failed tests:
Test name | Commit | Details | Required | Rerun command |
---|---|---|---|---|
ci/prow/4.15-openshift-e2e | dd78a20891f724822f5e31c95bf71df8e204e630 | link | true | /test 4.15-openshift-e2e |
ci/prow/4.14-openshift-e2e | dd78a20891f724822f5e31c95bf71df8e204e630 | link | true | /test 4.14-openshift-e2e |
ci/prow/4.16-openshift-e2e | dd78a20891f724822f5e31c95bf71df8e204e630 | link | true | /test 4.16-openshift-e2e |
Full PR test history. Your PR dashboard.
/approve
/approve
[APPROVALNOTIFIER] This PR is APPROVED
This pull-request has been approved by: slintes
The full list of commands accepted by this bot can be found here.
The pull request process is described here
seems we go on with #204 🤷🏼♂️
/close
@slintes: Closed this PR.
Why we need this PR
The "DS Recreation on Operator Update" unit tests are flaky, they fail to create the ds sometimes because it already exists. Reason that the outer
JustBeforeEach
runs first, which creates the SNR config, which async triggers creation of a ds. That conflicts with the creation of ds in the innerJustBeforeEach
.Changes made
JustBeforeEach
toBeforeEach
, so it runs before the outerJustBeforeEach
.