Skip to content

Commit 308a5e9

Browse files
committed
Fix bean name for reactive Cassandra health indicator
Closes gh-17763
1 parent 318d0c7 commit 308a5e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/cassandra/CassandraReactiveHealthIndicatorAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public CassandraReactiveHealthIndicatorAutoConfiguration(
6161
}
6262

6363
@Bean
64-
@ConditionalOnMissingBean(name = "cassandraReactiveHealthIndicator")
64+
@ConditionalOnMissingBean(name = "cassandraHealthIndicator")
6565
public ReactiveHealthIndicator cassandraHealthIndicator() {
6666
return createHealthIndicator(this.reactiveCassandraOperations);
6767
}

0 commit comments

Comments
 (0)