diff --git a/CHANGELOG.md b/CHANGELOG.md
index 22813e892..051689b2c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,3 +10,4 @@
- [refactor:let the configuration SDK context stand alone.](https://github.com/Tencent/spring-cloud-tencent/pull/1266)
- [fix:fix nearby router properties loading bug.](https://github.com/Tencent/spring-cloud-tencent/pull/1272)
- [fix: fix grammar issues for lane router example & optimize the gateway dependency](https://github.com/Tencent/spring-cloud-tencent/pull/1274)
+- [fix: fix lossless deregister failed when no healthcheck configured](https://github.com/Tencent/spring-cloud-tencent/pull/1279)
\ No newline at end of file
diff --git a/spring-cloud-tencent-examples/quickstart-example/quickstart-callee-service-a/pom.xml b/spring-cloud-tencent-examples/quickstart-example/quickstart-callee-service-a/pom.xml
index 580f3679c..ce6588118 100644
--- a/spring-cloud-tencent-examples/quickstart-example/quickstart-callee-service-a/pom.xml
+++ b/spring-cloud-tencent-examples/quickstart-example/quickstart-callee-service-a/pom.xml
@@ -28,12 +28,6 @@
org.springframework.boot
spring-boot-starter-actuator
-
-
- com.tencent.cloud
- spring-cloud-tencent-lossless-plugin
-
-
diff --git a/spring-cloud-tencent-examples/quickstart-example/quickstart-callee-service-a/src/main/resources/application.yml b/spring-cloud-tencent-examples/quickstart-example/quickstart-callee-service-a/src/main/resources/application.yml
index c0bc7c4fb..1f6a31354 100644
--- a/spring-cloud-tencent-examples/quickstart-example/quickstart-callee-service-a/src/main/resources/application.yml
+++ b/spring-cloud-tencent-examples/quickstart-example/quickstart-callee-service-a/src/main/resources/application.yml
@@ -33,11 +33,6 @@ spring:
enabled: true
rejectRequestTipsFilePath: reject-tips.html
maxQueuingTime: 500
- lossless:
- enabled: true
- port: 28011
- healthCheckPath: /actuator/health
- healthCheckInterval: 5000
tencent:
metadata:
content:
@@ -53,6 +48,5 @@ management:
- polaris-discovery
- polaris-ratelimit
- polaris-config
- - health
label:
key-value: user:zhangsan
diff --git a/spring-cloud-tencent-examples/quickstart-example/quickstart-callee-service-b/pom.xml b/spring-cloud-tencent-examples/quickstart-example/quickstart-callee-service-b/pom.xml
index 258c7abfb..0f3495e9e 100644
--- a/spring-cloud-tencent-examples/quickstart-example/quickstart-callee-service-b/pom.xml
+++ b/spring-cloud-tencent-examples/quickstart-example/quickstart-callee-service-b/pom.xml
@@ -28,11 +28,6 @@
org.springframework.boot
spring-boot-starter-actuator
-
-
- com.tencent.cloud
- spring-cloud-tencent-lossless-plugin
-
diff --git a/spring-cloud-tencent-examples/quickstart-example/quickstart-callee-service-b/src/main/resources/application.yml b/spring-cloud-tencent-examples/quickstart-example/quickstart-callee-service-b/src/main/resources/application.yml
index f44130629..b74bef5a1 100644
--- a/spring-cloud-tencent-examples/quickstart-example/quickstart-callee-service-b/src/main/resources/application.yml
+++ b/spring-cloud-tencent-examples/quickstart-example/quickstart-callee-service-b/src/main/resources/application.yml
@@ -32,11 +32,6 @@ spring:
ratelimit:
enabled: true
maxQueuingTime: 500
- lossless:
- enabled: true
- port: 28012
- healthCheckPath: /actuator/health
- healthCheckInterval: 5000
tencent:
metadata:
content:
@@ -50,6 +45,5 @@ management:
- polaris-discovery
- polaris-ratelimit
- polaris-config
- - health
label:
key-value: user2:lisi
diff --git a/spring-cloud-tencent-examples/quickstart-example/quickstart-caller-service/pom.xml b/spring-cloud-tencent-examples/quickstart-example/quickstart-caller-service/pom.xml
index 3d8e23b61..cc72331c6 100644
--- a/spring-cloud-tencent-examples/quickstart-example/quickstart-caller-service/pom.xml
+++ b/spring-cloud-tencent-examples/quickstart-example/quickstart-caller-service/pom.xml
@@ -38,11 +38,6 @@
org.springframework.boot
spring-boot-starter-actuator
-
-
- com.tencent.cloud
- spring-cloud-tencent-lossless-plugin
-
diff --git a/spring-cloud-tencent-examples/quickstart-example/quickstart-caller-service/src/main/resources/application.yml b/spring-cloud-tencent-examples/quickstart-example/quickstart-caller-service/src/main/resources/application.yml
index 5150ab7bc..0460dcf25 100644
--- a/spring-cloud-tencent-examples/quickstart-example/quickstart-caller-service/src/main/resources/application.yml
+++ b/spring-cloud-tencent-examples/quickstart-example/quickstart-caller-service/src/main/resources/application.yml
@@ -28,11 +28,6 @@ spring:
# pushgateway:
# enabled: true
# address: 127.0.0.1:9091
- lossless:
- enabled: true
- port: 28013
- healthCheckPath: /actuator/health
- healthCheckInterval: 5000
tencent:
rpc-enhancement:
enabled: true
@@ -50,5 +45,4 @@ management:
exposure:
include:
- polaris-discovery
- - polaris-circuit-breaker
- - health
+ - polaris-circuit-breaker
\ No newline at end of file
diff --git a/spring-cloud-tencent-examples/quickstart-example/quickstart-gateway-service/pom.xml b/spring-cloud-tencent-examples/quickstart-example/quickstart-gateway-service/pom.xml
index 5cc1b3de4..9013c29d4 100644
--- a/spring-cloud-tencent-examples/quickstart-example/quickstart-gateway-service/pom.xml
+++ b/spring-cloud-tencent-examples/quickstart-example/quickstart-gateway-service/pom.xml
@@ -33,11 +33,6 @@
org.springframework.boot
spring-boot-starter-actuator
-
-
- com.tencent.cloud
- spring-cloud-tencent-lossless-plugin
-
diff --git a/spring-cloud-tencent-examples/quickstart-example/quickstart-gateway-service/src/main/resources/application.yml b/spring-cloud-tencent-examples/quickstart-example/quickstart-gateway-service/src/main/resources/application.yml
index e9b286aa0..fd9dd9f05 100644
--- a/spring-cloud-tencent-examples/quickstart-example/quickstart-gateway-service/src/main/resources/application.yml
+++ b/spring-cloud-tencent-examples/quickstart-example/quickstart-gateway-service/src/main/resources/application.yml
@@ -27,11 +27,6 @@ spring:
stat:
enabled: true
port: 28081
- lossless:
- enabled: true
- port: 28014
- healthCheckPath: /actuator/health
- healthCheckInterval: 5000
gateway:
discovery:
locator: