-
Notifications
You must be signed in to change notification settings - Fork 5k
out.FatalT should be followed by non-zero exit #17965
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
Conversation
/ok-to-test |
This comment has been minimized.
This comment has been minimized.
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.
good catch, our naming is kind of confusing,
it would be nice to add a comment on the func that this func does Not Exit...so future users dont rely on it to Exit for them. or maybe we should have had a better name for it...what do you think?
agree - it isn't obvious there are a total of five places we currently use it (two of which are in the same code segment), so it shouldn't be too hard to refactor we could add a func comment, but people might still miss it, so was thinking about two other options:
wdyt @medyagh ? |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@prezha this suggestion seems more appealing |
This comment has been minimized.
This comment has been minimized.
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: medyagh, prezha, spowelljr 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 |
kvm2 driver with docker runtime
Times for minikube start: 53.1s 50.1s 53.6s 51.9s 49.5s Times for minikube ingress: 25.2s 27.6s 27.2s 26.7s 27.1s docker driver with docker runtime
Times for minikube start: 25.5s 22.4s 25.4s 24.9s 24.5s Times for minikube (PR 17965) ingress: 19.4s 20.8s 20.8s 20.8s 21.9s docker driver with containerd runtime
Times for minikube start: 24.2s 24.5s 21.6s 21.2s 21.3s Times for minikube ingress: 31.4s 31.4s 31.4s 31.4s 31.4s |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
These are the flake rates of all failed tests.
To see the flake rates of all tests by environment, click here. |
we should not fall through and exit with code 0 on fatal errors
before
after
bonus: we've decided to remove out.FatalT() altogether, to avoid any future confusion