Skip to content

Commit

Permalink
fix:fix actuator name warning from #1428 .
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyeBeFreeman committed Sep 2, 2024
1 parent 3f6ed5c commit 4aa91e4
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 10 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@
- [feat:upgrade nearby router and add namespace nearby router.](https://github.com/Tencent/spring-cloud-tencent/pull/1371)
- [fix:fix contract reporting bug when using TSF.](https://github.com/Tencent/spring-cloud-tencent/pull/1373)
- [fix: fix TSF context bootstrap configuration](https://github.com/Tencent/spring-cloud-tencent/pull/1395)
- [fix: fix PolarisCircuitBreakerConfiguration not clear when gateway invoke by wildcard apis](https://github.com/Tencent/spring-cloud-tencent/pull/1418)
- [fix: fix PolarisCircuitBreakerConfiguration not clear when gateway invoke by wildcard apis](https://github.com/Tencent/spring-cloud-tencent/pull/1418)
- [fix:fix actuator name warning from #1428 .](https://github.com/Tencent/spring-cloud-tencent/pull/1429)
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@

<properties>
<!-- Project revision -->
<revision>2.0.0.0-2022.0.5-RC1</revision>
<revision>2.0.0.0-2022.0.5-SNAPSHOT</revision>

<!-- Spring Framework -->
<spring.framework.version>6.0.22</spring.framework.version>
Expand Down
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
4 changes: 2 additions & 2 deletions spring-cloud-tencent-dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@

<properties>
<!-- Project revision -->
<revision>2.0.0.0-2022.0.5-RC1</revision>
<revision>2.0.0.0-2022.0.5-SNAPSHOT</revision>

<!-- Polaris SDK version -->
<polaris.version>2.0.0.0-RC1</polaris.version>
<polaris.version>2.0.0.0-SNAPSHOT</polaris.version>

<!-- Dependencies -->
<guava.version>32.0.1-jre</guava.version>
Expand Down

0 comments on commit 4aa91e4

Please sign in to comment.