-
Notifications
You must be signed in to change notification settings - Fork 4.8k
monitortest: fix empty value for machine phase #30600
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
base: main
Are you sure you want to change the base?
Conversation
|
Pipeline controller notification For optional jobs, comment This repository is configured in: automatic mode |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: mkowalski The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
/test e2e-metal-ipi-ovn-ipv6 |
|
/hold |
|
/test e2e-metal-ipi-ovn-ipv6 |
I have discovered that at times it happens that I see `Machine is in ""` in the reported intervals. This is not correct and may be caused by the fact that phase is defined as an optional `Phase *string json:"phase,omitempty"` field so technically an empty value is correct one there. In any case, for constructing interval I would prefer to explicitly see "missing" message instead of empty value.
7e4350a to
7c18ec9
Compare
|
/test e2e-aws-ovn-fips |
|
@mkowalski: The following test failed, say
Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
|
/payload-job periodic-ci-openshift-release-master-nightly-4.22-e2e-gcp-ovn-serial |
|
@mkowalski: trigger 1 job(s) for the /payload-(with-prs|job|aggregate|job-with-prs|aggregate-with-prs) command
See details on https://pr-payload-tests.ci.openshift.org/runs/ci/3326e9e0-db45-11f0-8cd1-6fa5d46e738d-0 |
|
Things we learned on a debugging call:
|
I have discovered that at times it happens that I see
Machine is in ""in the reported intervals. This is not correct and may be caused by the fact that phase is defined as an optionalPhase *string json:"phase,omitempty"field so technically an empty value is correct one there.In any case, for constructing interval I would prefer to explicitly see "missing" message instead of empty value.