Merge branch '3.4.x'
Closes gh-44685
This commit is contained in:
@@ -16,8 +16,6 @@
|
||||
|
||||
package org.springframework.boot.actuate.autoconfigure.data.redis;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import reactor.core.publisher.Flux;
|
||||
|
||||
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
|
||||
@@ -51,8 +49,7 @@ import org.springframework.data.redis.connection.ReactiveRedisConnectionFactory;
|
||||
public class RedisReactiveHealthContributorAutoConfiguration extends
|
||||
CompositeReactiveHealthContributorConfiguration<RedisReactiveHealthIndicator, ReactiveRedisConnectionFactory> {
|
||||
|
||||
RedisReactiveHealthContributorAutoConfiguration(
|
||||
Map<String, ReactiveRedisConnectionFactory> redisConnectionFactories) {
|
||||
RedisReactiveHealthContributorAutoConfiguration() {
|
||||
super(RedisReactiveHealthIndicator::new);
|
||||
}
|
||||
|
||||
|
||||
@@ -123,13 +123,11 @@ abstract class AbstractCompositeHealthContributorConfigurationTests<C, I extends
|
||||
@Bean(defaultCandidate = false)
|
||||
TestBean nonDefault() {
|
||||
return new TestBean();
|
||||
|
||||
}
|
||||
|
||||
@Bean(autowireCandidate = false)
|
||||
TestBean nonAutowire() {
|
||||
return new TestBean();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -145,7 +143,6 @@ abstract class AbstractCompositeHealthContributorConfigurationTests<C, I extends
|
||||
@Bean(autowireCandidate = false)
|
||||
TestBean nonAutowire() {
|
||||
return new TestBean();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user