Merge pull request #448 from dralves/jclouds-vbox-nat-host-only-working-cluster-and-live-test

one machine (the first one) was being wasted due to bad ip reporting
This commit is contained in:
Adrian Cole 2012-03-15 01:00:35 -07:00
commit fad4cee803
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ public class NodeCreator implements Function<NodeSpec, NodeAndInitialCredentials
RunScriptOnNode.Factory scriptRunnerFactory, Supplier<NodeMetadata> hostSupplier) {
this.manager = manager;
this.cloner = cloner;
this.nodePorts = new AtomicInteger(NODE_PORT_INIT);
this.nodePorts = new AtomicInteger(NODE_PORT_INIT + 1);
this.nodeIps = new AtomicInteger(1);
this.machineUtils = machineUtils;
this.imachineToNodeMetadata = imachineToNodeMetadata;