-
Notifications
You must be signed in to change notification settings - Fork 306
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
FISH-666 FISH-1372 MicroProfile 4.1 #5303
Conversation
BiConsumer<? super String, ? super Set<HealthCheck>> mergeHealthCheckMap | ||
= (key, value) -> healthChecks.merge(key, value, (oldValue, newValue) -> { | ||
oldValue.addAll(newValue); | ||
return oldValue; | ||
}); | ||
//FIXME most likely this unintentionally changes the fields |
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.
Presumably this is referring to the deep vs. shallow copy problem
Is using the newly decided /health/started of RC3! 👍 |
jenkins test |
build fails... MP Health? 3.1 is not out yet I guess :) |
Correct. |
Signed-off-by: Andrew Pielage <[email protected]>
Signed-off-by: Andrew Pielage <[email protected]>
a4c7483
to
ad6b6e3
Compare
Rebased ontop of #5318 |
Jenkins test please |
FISH-666 FISH-1372 MicroProfile 4.1
Description
New Feature/Improvement.
Implements MicroProfile 4.1, which consists of just MicroProfile Health 3.1.
MicroProfile Health 3.1 introduces a
@Startup
annotation.Also increments JWT-Auth for 1.2.1, which appears to just be a patch update with no changes - something presumably wrong with the release of 1.2.
Important Info
Blockers
payara/MicroProfile-TCK-Runners#147
Related
payara/MicroProfile-TCK-Runners#152
#5372
Testing
New tests
None.
Testing Performed
Ran all of the MicroProfile TCKs locally.
Testing Environment
Windows 10, JDK 8.
WSL OpenSUSE Leap 15.2, JDK 8.
Documentation
payara/Payara-Community-Documentation#170
Notes for Reviewers
None.