comparison src/main/java/alice/test/topology/localTestTopology/LTopologyStartCodeSegment.java @ 645:cb16036404ba

fix local topology test
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 31 Dec 2017 11:04:29 +0900
parents 74dbb8809c73
children
comparison
equal deleted inserted replaced
644:e0621f645e2e 645:cb16036404ba
12 this.configs = configs; 12 this.configs = configs;
13 } 13 }
14 14
15 @Override 15 @Override
16 public void run() { 16 public void run() {
17 for(LocalTestTopologyConfig conf : configs) {
18 new LTRemoteIncrement(conf);
19 }
20 ods.put("remote1", "num", 0); 17 ods.put("remote1", "num", 0);
21 } 18 }
22 } 19 }