Commit 144e6752 authored by Spiros Koulouzis's avatar Spiros Koulouzis

Removed check for null IPs on VMs. User should check if VM is up

parent 9fb2cb09
......@@ -637,9 +637,10 @@ public class Consumer extends DefaultConsumer {
paramValue += sub.userName + " ";
// paramValue += tempInputDirPath + File.separator + sub.subTopology.accessKeyPair.SSHKeyPairId + File.separator + "id_rsa";
paramValue += vm.role + "\n";
} else if (vm == null || !sub.status.equals("running")) {
throw new Exception("A VM failed to start. Deleteing all topology");
}
//else if (vm == null || !sub.status.equals("running")) {
// throw new Exception("A VM failed to start. Deleteing all topology");
// }
}
// String accessKeyPath = tempInputDirPath + File.separator + sub.subTopology.accessKeyPair.SSHKeyPairId + File.separator + "id_rsa";
// System.err.println("accessKeyPath: " + accessKeyPath);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment