summaryrefslogtreecommitdiffstats
path: root/vnf-sdk-function-test/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'vnf-sdk-function-test/src/main')
-rw-r--r--vnf-sdk-function-test/src/main/java/org/openo/vnfsdk/functest/common/ServiceRegistration.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/vnf-sdk-function-test/src/main/java/org/openo/vnfsdk/functest/common/ServiceRegistration.java b/vnf-sdk-function-test/src/main/java/org/openo/vnfsdk/functest/common/ServiceRegistration.java
index d7ed67e..f6cffba 100644
--- a/vnf-sdk-function-test/src/main/java/org/openo/vnfsdk/functest/common/ServiceRegistration.java
+++ b/vnf-sdk-function-test/src/main/java/org/openo/vnfsdk/functest/common/ServiceRegistration.java
@@ -36,11 +36,15 @@ public class ServiceRegistration implements Runnable {
LOG.info("start extsys microservice register");
boolean flag = false;
int retry = 0;
- while(!flag || retry < 1000) {
+
+ while(!flag) {
LOG.info("VNF-SDK function test microservice register.retry:" + retry);
retry++;
flag = MicroserviceBusConsumer.registerService(funcTestEntity);
+ if(retry >= 1000) {
+ flag = true;
+ }
if(flag == false) {
LOG.warn("microservice register failed, sleep 30S and try again.");