-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Issue #1633 Possibility to disable SBA server side by property #1672
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
Codecov Report
@@ Coverage Diff @@
## master #1672 +/- ##
============================================
+ Coverage 83.69% 83.72% +0.02%
- Complexity 1203 1208 +5
============================================
Files 151 152 +1
Lines 3514 3526 +12
Branches 251 253 +2
============================================
+ Hits 2941 2952 +11
- Misses 443 444 +1
Partials 130 130
Continue to review full report at Codecov.
|
|
||
if (!serverProperties.getServer().isEnabled()) { | ||
return ConditionOutcome | ||
.noMatch("Spring Boot Server is disabled, because 'spring.boot.admin.client.enabled' is false."); |
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.
Shouldn't this be spring.boot.admin.server.enabled
in the noMatch
string?
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.
fixed in de02259
@@ -52,7 +56,7 @@ In addition when the reverse proxy terminates the https connection, it may be ne | |||
|
|||
| spring.boot.admin.probed-endpoints | |||
| For Spring Boot 1.x client applications SBA probes for the specified endpoints using an OPTIONS request. | |||
If the path differs from the id you can specify this as id:path (e.g. health:ping).. | |||
If the path differs from the id you can specify this as id:path (e.g. health:ping).. |
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 change is not related to the PR, right? Can you please revert to removing the spaces?
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.
fixed in 60f3c40
Issue #1633 Fix noMatch message
No description provided.