This commit is contained in:
Redkale
2016-08-24 17:34:17 +08:00
parent bb77681445
commit bc19d75422

View File

@@ -353,7 +353,7 @@ public abstract class NodeServer {
localServiceWrappers.clear();
localServiceWrappers.addAll(swlist);
final List<String> slist = sb == null ? null : new CopyOnWriteArrayList<>();
localServiceWrappers.parallelStream().forEach(y -> {
localServiceWrappers.stream().forEach(y -> {
long s = System.currentTimeMillis();
y.getService().init(y.getConf());
long e = System.currentTimeMillis() - s;