-
Notifications
You must be signed in to change notification settings - Fork 254
Improve logging level and clarify SSH port check message #4794
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
- Changed log level from Debug to Error when logging check errors. - Updated fix description to clarify that port is required by crc.
Reviewer's GuideThis PR strengthens error visibility by changing preflight check logging from Debug to Error and improves clarity of the SSH port check message by updating its fix description wording. Class diagram for updated Check logging and SSH port check messageclassDiagram
class Check {
+doCheck(config)
}
class logging {
+Error(string)
+Debug(string)
}
Check --|> logging : uses
class sshPortCheck {
+fixDescription
}
sshPortCheck : fixDescription = "crc requires port <port> to run SSH"
File-Level Changes
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
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.
/retest |
/test e2e-microshift-crc |
I see this ssh failure in e2e microshift test run:
|
/retest |
1 similar comment
/retest |
/test e2e-microshift-crc |
@praveenkumar: No presubmit jobs available for crc-org/crc@main In response to this:
Instructions 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. |
/test e2e-microshift-crc |
@vyasgun: The following test failed, say
Full PR test history. Your PR dashboard. Instructions 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. |
Description
Fixes: #4662
Relates to: PR #4772 (Follow up to this PR)
Type of change
test, version modification, documentation, etc.)
Proposed changes
Testing
Contribution Checklist
Summary by Sourcery
Improve error visibility by changing preflight check log level and clarify SSH port requirement message
Bug Fixes:
Enhancements: