Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-cloud-netflix
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-cloud-netflix
Commits
a63b8256
Commit
a63b8256
authored
Jun 08, 2015
by
Dave Syer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add call to Lifecycle.stop()
See gh-377
parent
ce96c834
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
EurekaDiscoveryClientConfiguration.java
...ud/netflix/eureka/EurekaDiscoveryClientConfiguration.java
+5
-4
No files found.
spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/eureka/EurekaDiscoveryClientConfiguration.java
View file @
a63b8256
...
@@ -137,7 +137,7 @@ public class EurekaDiscoveryClientConfiguration implements SmartLifecycle, Order
...
@@ -137,7 +137,7 @@ public class EurekaDiscoveryClientConfiguration implements SmartLifecycle, Order
if
(
this
.
healthCheckHandler
!=
null
)
{
if
(
this
.
healthCheckHandler
!=
null
)
{
DiscoveryManager
.
getInstance
().
getDiscoveryClient
()
DiscoveryManager
.
getInstance
().
getDiscoveryClient
()
.
registerHealthCheck
(
this
.
healthCheckHandler
);
.
registerHealthCheck
(
this
.
healthCheckHandler
);
}
}
this
.
context
.
publishEvent
(
new
InstanceRegisteredEvent
<>(
this
,
this
.
context
.
publishEvent
(
new
InstanceRegisteredEvent
<>(
this
,
this
.
instanceConfig
));
this
.
instanceConfig
));
...
@@ -173,6 +173,7 @@ public class EurekaDiscoveryClientConfiguration implements SmartLifecycle, Order
...
@@ -173,6 +173,7 @@ public class EurekaDiscoveryClientConfiguration implements SmartLifecycle, Order
@Override
@Override
public
void
stop
(
Runnable
callback
)
{
public
void
stop
(
Runnable
callback
)
{
stop
();
callback
.
run
();
callback
.
run
();
}
}
...
@@ -223,15 +224,15 @@ public class EurekaDiscoveryClientConfiguration implements SmartLifecycle, Order
...
@@ -223,15 +224,15 @@ public class EurekaDiscoveryClientConfiguration implements SmartLifecycle, Order
@ConditionalOnClass
(
Endpoint
.
class
)
@ConditionalOnClass
(
Endpoint
.
class
)
@ConditionalOnBean
(
MetricReader
.
class
)
@ConditionalOnBean
(
MetricReader
.
class
)
protected
static
class
EurekaHealthIndicatorConfiguration
{
protected
static
class
EurekaHealthIndicatorConfiguration
{
@Autowired
@Autowired
private
List
<
MetricReader
>
metricReaders
=
Collections
.
emptyList
();
private
List
<
MetricReader
>
metricReaders
=
Collections
.
emptyList
();
@Bean
@Bean
@ConditionalOnMissingBean
@ConditionalOnMissingBean
public
EurekaHealthIndicator
eurekaHealthIndicator
(
public
EurekaHealthIndicator
eurekaHealthIndicator
(
com
.
netflix
.
discovery
.
DiscoveryClient
eurekaDiscoveryClient
,
EurekaInstanceConfig
config
)
{
com
.
netflix
.
discovery
.
DiscoveryClient
eurekaDiscoveryClient
,
EurekaInstanceConfig
config
)
{
CompositeMetricReader
metrics
=
new
CompositeMetricReader
(
metricReaders
.
toArray
(
new
MetricReader
[
0
]));
CompositeMetricReader
metrics
=
new
CompositeMetricReader
(
this
.
metricReaders
.
toArray
(
new
MetricReader
[
0
]));
return
new
EurekaHealthIndicator
(
eurekaDiscoveryClient
,
metrics
,
config
);
return
new
EurekaHealthIndicator
(
eurekaDiscoveryClient
,
metrics
,
config
);
}
}
}
}
...
...
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