changeset 131:5c608008c29a

fix configurationfinish if == to >=
author akahori
date Tue, 25 Dec 2018 15:18:01 +0900
parents b94aef33e262
children 080c9bb8dcfb
files src/main/java/christie/topology/node/ConfigurationFinish.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/main/java/christie/topology/node/ConfigurationFinish.java	Tue Dec 25 15:17:15 2018 +0900
+++ b/src/main/java/christie/topology/node/ConfigurationFinish.java	Tue Dec 25 15:18:01 2018 +0900
@@ -25,7 +25,7 @@
     @Override
     protected void run(CodeGearManager cgm) {
         reverseCount++;
-        if (reverseCount == connectNodeNum) {
+        if (reverseCount >= connectNodeNum) {
             getDGM(topologyNodeConfig.getManagerKey()).put("nodePrepareDone", "done");
             cgm.setup(new Start());