Skip to content

Commit

Permalink
fix:fix actuator name warning from #1428 . (#1431)
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyeBeFreeman committed Sep 2, 2024
1 parent 1a07828 commit b39621a
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@
- [feat:upgrade nearby router and add namespace nearby router.](https://github.com/Tencent/spring-cloud-tencent/pull/1421)
- [fix:fix contract reporting bug when using TSF.](https://github.com/Tencent/spring-cloud-tencent/pull/1422)
- [fix: fix TSF context bootstrap configuration](https://github.com/Tencent/spring-cloud-tencent/pull/1424)
- [fix: fix PolarisCircuitBreakerConfiguration not clear when gateway invoke by wildcard apis](https://github.com/Tencent/spring-cloud-tencent/pull/1426)
- [fix: fix PolarisCircuitBreakerConfiguration not clear when gateway invoke by wildcard apis](https://github.com/Tencent/spring-cloud-tencent/pull/1426)
- [fix:fix actuator name warning from #1428 .](https://github.com/Tencent/spring-cloud-tencent/pull/1431)
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
*
* @author wenxuan70
*/
@Endpoint(id = "polaris-circuit-breaker")
@Endpoint(id = "polariscircuitbreaker")
public class PolarisCircuitBreakerEndpoint {

private static final Logger LOG = LoggerFactory.getLogger(PolarisCircuitBreakerEndpoint.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*
* @author shuiqingliu
**/
@Endpoint(id = "polaris-config")
@Endpoint(id = "polarisconfig")
public class PolarisConfigEndpoint {

private final PolarisConfigProperties polarisConfigProperties;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
*
* @author shuiqingliu
*/
@Endpoint(id = "polaris-discovery")
@Endpoint(id = "polarisdiscovery")
public class PolarisDiscoveryEndpoint {

private final PolarisDiscoveryProperties polarisDiscoveryProperties;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
*
* @author shuiqingliu
**/
@Endpoint(id = "polaris-ratelimit")
@Endpoint(id = "polarisratelimit")
public class PolarisRateLimitRuleEndpoint {

private static final Logger LOG = LoggerFactory.getLogger(PolarisRateLimitRuleEndpoint.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
*
* @author lepdou 2022-07-25
*/
@Endpoint(id = "polaris-router")
@Endpoint(id = "polarisrouter")
public class PolarisRouterEndpoint {
private static final Logger LOGGER = LoggerFactory.getLogger(PolarisRouterEndpoint.class);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*
* @author shuiqingliu
**/
@Endpoint(id = "polaris-metadata")
@Endpoint(id = "polarismetadata")
public class PolarisMetadataEndpoint {

private final StaticMetadataManager staticMetadataManager;
Expand Down

0 comments on commit b39621a

Please sign in to comment.