Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-boot-admin
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
spring-boot-admin
Commits
f3492d6a
Commit
f3492d6a
authored
May 18, 2018
by
Tommy Ludwig
Committed by
Johannes Edmeier
May 18, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix property name in JavaDoc and ConditionOutcome
parent
105d7907
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
SpringBootAdminClientEnabledCondition.java
.../client/config/SpringBootAdminClientEnabledCondition.java
+2
-2
No files found.
spring-boot-admin-client/src/main/java/de/codecentric/boot/admin/client/config/SpringBootAdminClientEnabledCondition.java
View file @
f3492d6a
...
...
@@ -25,7 +25,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
/**
* This condition checks if the client should be enabled. Two properties are checked:
* spring.boot.admin.client.enabled and spring.boot.admin.url. The following table shows under which conditions the
* spring.boot.admin.client.enabled and spring.boot.admin.
client.
url. The following table shows under which conditions the
* client is active.
* <pre>
* | enabled: false | enabled: true (default) |
...
...
@@ -48,7 +48,7 @@ public class SpringBootAdminClientEnabledCondition extends SpringBootCondition {
if
(
clientProperties
.
getUrl
().
length
==
0
)
{
return
ConditionOutcome
.
noMatch
(
"Spring Boot Client is disabled, because 'spring.boot.admin.url' is empty."
);
"Spring Boot Client is disabled, because 'spring.boot.admin.
client.
url' is empty."
);
}
return
ConditionOutcome
.
match
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment