-
Notifications
You must be signed in to change notification settings - Fork 529
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
Fix: #2239 Quarkus k8s:resource automatic port pick up from application.properties #2291
Conversation
Eclipse JKube CI ReportStarted new GH workflow run for #2291 (2023-07-21T13:19:46Z) ⚙️ JKube E2E Tests (5622606031)
|
Codecov Report
@@ Coverage Diff @@
## master #2291 +/- ##
============================================
+ Coverage 59.36% 59.43% +0.07%
+ Complexity 4586 4570 -16
============================================
Files 500 504 +4
Lines 21211 21023 -188
Branches 2830 2779 -51
============================================
- Hits 12591 12495 -96
+ Misses 7370 7318 -52
+ Partials 1250 1210 -40
... and 4 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
Signed-off-by: Ankit Singh <ankit2.singh@samsung.com>
Kudos, SonarCloud Quality Gate passed! |
if (StringUtils.isNotBlank(profilePort)) { | ||
return profilePort; | ||
} | ||
} |
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.
Why have you removed this code from this method?
You should not modify existing tests unless you really need to do it. They are there to validate currently expected behavior. |
I'm closing this one, need some discussion before merging. #2287 |
Description
k8s:resource doesn't automatically pick up port from Quarkus application.properties
Fixes #2239
Type of change
test, version modification, documentation, etc.)
Checklist