LenoMinkus opened a new issue, #15554: URL: https://github.com/apache/dubbo/issues/15554
### Pre-check - [x] I am sure that all the content I provide is in English. ### Search before asking - [x] I had searched in the [issues](https://github.com/apache/dubbo/issues?q=is%3Aissue) and found no similar issues. ### Apache Dubbo Component Java SDK (apache/dubbo) ### Dubbo Version | Item | Version | | --------------- |-----------------| | Dubbo | 3.3.0 | | Nacos Server | 3.0.2 | | JDK | openjdk-17 | | OS | Windows | ### Steps to reproduce this issue 1.Start Nacos 3.0.2 in standalone mode: docker run -d -p 8082:8848 -p 8083:9848 \ -e MODE=standalone nacos/nacos-server:3.0.2 Configure Dubbo application.yml: dubbo: config-center: address: nacos://localhost:8082 registry: address: nacos://localhost:8082 metadata-report: address: nacos://localhost:8082 Start the Dubbo application. ### What you expected to happen Application starts successfully with logs: Successfully connected to nacos config server ... ### Anything else Actual Behavior Logs repeatedly print: Failed to connect to nacos config server. Server status: DOWN. Config Service Available: true. Root Cause Dubbo uses GET /nacos/v1/ns/operator/switches to determine the server status. Nacos 3.x has removed this endpoint and returns 410 Gone, causing Dubbo to treat the server as DOWN. ### Are you willing to submit a pull request to fix on your own? - [x] Yes I am willing to submit a pull request on my own! ### Code of Conduct - [x] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
