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

Early exit Eventually block if target condition cannot be reached any more #449

Conversation

SaschaSchwarze0
Copy link
Member

In the e2e tests, we have an Eventually block in validators.go which waits for a build run to be succeeded (and another one waits for it to be failed). We at the moment have no early exit in there. This means that a failed build run will cause the full timeout duration to be taken. As this is quite long and can be made even longer using the timeout multiplier, test timeouts can occur. We are seeing a Ginkgo node timeout for time to time in our regular tests:

	 -------------------------------------------------------------------
	|                                                                   |
	|  Ginkgo timed out waiting for all parallel nodes to report back!  |
	|                                                                   |
	 -------------------------------------------------------------------

I am adding early-exit conditions to break out of the Eventually loop.

@qu1queee qu1queee self-requested a review October 21, 2020 11:56
Copy link
Contributor

@qu1queee qu1queee left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks good, in theory for validateBuildRunToSucceedwe will be asserting until we get the True(good case) or the false(bad case), and if we get an Unknown, then we continue polling.

@qu1queee
Copy link
Contributor

/lgtm

@openshift-ci-robot openshift-ci-robot added the lgtm Indicates that a PR is ready to be merged. label Oct 21, 2020
@openshift-ci-robot
Copy link

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: qu1queee

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci-robot openshift-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Oct 21, 2020
@openshift-merge-robot openshift-merge-robot merged commit 1775c91 into shipwright-io:master Oct 21, 2020
@SaschaSchwarze0 SaschaSchwarze0 deleted the sascha-e2e-eventually-early-exit branch October 21, 2020 13:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. lgtm Indicates that a PR is ready to be merged.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants