-
Notifications
You must be signed in to change notification settings - Fork 534
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
Issue #3613: Fix/unnecessary semicolon #3640
Issue #3613: Fix/unnecessary semicolon #3640
Conversation
…ube#3613) Signed-off-by: curiousbud [email protected] Helped-by: curiousbud [email protected]
Eclipse JKube CI ReportStarted new GH workflow run for #3640 (2025-01-24T15:43:20Z) ⚙️ JKube E2E Tests (12952599593)
|
CHANGELOG.md
Outdated
@@ -21,6 +21,7 @@ Usage: | |||
./scripts/extract-changelog-for-version.sh 1.3.37 5 | |||
``` | |||
### 1.19-SNAPSHOT | |||
* Fix #3613: remove unnecessary semicolon in HealthCheckMode.java |
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.
This is a minor cleanup change, there is no need to add changelog for this change.
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.
Should I remove it and raise a PR again?...I apologise if it sounds silly but I'm still quite new to open source....
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.
You can use git commit --amend
to change your commit and force push. No need to create a new PR
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.
I have completed the previous request is it ready for a merge now?
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.
Hare you pushed your changes to github?
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.
yes I have, was there any mistake?
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.
yes I have, was there any mistake?
Yes, I can still see these changes in your PR. I think you're misunderstanding. You need to revert changes done to this file.
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.
I have made the changes to the PR.
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.
An unrelated change is still present in the changelog. Could you please revert this too?
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.
Yes sir I will
07094c7
to
20f35d5
Compare
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.
It took me sometime to understand but I actually reverted my PR to the first commit I made where I didn't made the changelog entry.
Quality Gate passedIssues Measures |
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.
LGTM, thx!
Description
Fixes #3613
The class HealthCheckMode presents the issue: Unnecessary semicolon
;
.The following line:
jkube/jkube-kit/config/image/src/main/java/org/eclipse/jkube/kit/config/image/build/HealthCheckMode.java
Line 27 in 5da6068:
cmd;
has been changed to:
cmd
Type of change
Checklist