Open hooverhe opened 3 years ago
More than one implementation of @EnableCircuitBreaker (now relying on @Conditionals to pick one): [com.alibaba.cloud.sentinel.custom.SentinelCircuitBreakerConfiguration, org.springframework.cloud.netflix.hystrix.HystrixCircuitBreakerConfiguration]
The version of spring boot and cloud:
<groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.3.8.RELEASE</version> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Hoxton.SR10</version>
If I exclude those Hystrix dependencies, the application will throw exception. How to disable Hystrix while using Sentinel?
Hi, you may submit an issue in https://github.com/alibaba/spring-cloud-alibaba
use @SpringBootApplication and @EnableDiscoveryClient replace the @SpringCloudApplication.
More than one implementation of @EnableCircuitBreaker (now relying on @Conditionals to pick one): [com.alibaba.cloud.sentinel.custom.SentinelCircuitBreakerConfiguration, org.springframework.cloud.netflix.hystrix.HystrixCircuitBreakerConfiguration]
The version of spring boot and cloud:
If I exclude those Hystrix dependencies, the application will throw exception. How to disable Hystrix while using Sentinel?