Skip to content

Commit d35cdfd

Browse files
committed
Fix condition naming.
1 parent c2c5352 commit d35cdfd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spring-cloud-netflix-eureka-client/src/main/java/org/springframework/cloud/netflix/eureka/config/DiscoveryClientOptionalArgsConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ static class OnWebClientDisabled {
276276

277277
@ConditionalOnProperty(prefix = "eureka.client", name = "restclient.enabled", matchIfMissing = true,
278278
havingValue = "true")
279-
static class OnRestClientDisabled {
279+
static class OnRestClientEnabled {
280280

281281
}
282282

spring-cloud-netflix-eureka-client/src/main/java/org/springframework/cloud/netflix/eureka/config/EurekaConfigServerBootstrapConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ static class OnWebClientDisabled {
162162

163163
@ConditionalOnProperty(prefix = "eureka.client", name = "restclient.enabled", matchIfMissing = true,
164164
havingValue = "true")
165-
static class OnRestClientDisabled {
165+
static class OnRestClientEnabled {
166166

167167
}
168168

0 commit comments

Comments
 (0)