You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1.The jar com.alibaba.cloud:spring-cloud-starter-alibaba-sentinel:2023.0.3.2 changes the way to initilize the configuration with SentinelApplicationContextInitializer and not the same as the old way com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration(2023.0.1) and in both ways, I logged the system properties and I can get csp.sentinel.app.type=11 in 2023.0.1, but not in 2023.0.3.2. but I am not sure whether It is the root cause.
// earlier initialize
if (properties.isEager()) {
InitExecutor.doInit();
}`
After the app started, we can get csp.sentinel.app.type=11 in both ways with code below, so I thought It maybe lifecycle problem. public static void main(String[] args) { ConfigurableApplicationContext run = SpringApplication.run(GatewayCircuitbreakerApplication.class, args); Map<String, Object> systemProperties = run.getEnvironment().getSystemProperties(); }
Please correct me if I am wrong.
Issue Description
Type: bug report
Describe what happened
Spring Cloud Alibaba 2023.0.1.0 集成 Sentinel Dashboard 时,网关(Gateway)的流控和熔断页面能正常显示 Gateway 定制版的规则管理界面。
Spring Cloud Alibaba 2023.0.3.2 下,Sentinel Dashboard 只能显示 普通版 的规则管理界面,无法识别 Gateway 模块。
Describe what you expected to happen
Spring Cloud Alibaba 2023.0.3.2 ,可以正常显示网关流控和熔断页面
How to reproduce it (as minimally and precisely as possible)
run the attachments below and problems will occur for dashboard 1.8..8
Tell us your environment
Anything else we need to know?
The text was updated successfully, but these errors were encountered: