mirror of https://github.com/apache/jclouds.git
hardened compute adapter
This commit is contained in:
parent
548068c7ff
commit
618dc907a1
|
@ -159,7 +159,8 @@ public class AdaptingComputeServiceStrategies<N, H, I, L> implements CreateNodeW
|
|||
public NodeMetadata createNodeWithGroupEncodedIntoName(String group, String name, Template template) {
|
||||
checkState(group != null, "group (that which groups identical nodes together) must be specified");
|
||||
checkState(name != null && name.indexOf(group) != -1, "name should have %s encoded into it", group);
|
||||
checkState(template != null, "template must be specified");
|
||||
checkState(template != null, "template was null");
|
||||
checkState(template.getOptions() != null, "template options was null");
|
||||
|
||||
NodeAndInitialCredentials<N> from = client.createNodeWithGroupEncodedIntoName(group, name, template);
|
||||
LoginCredentials fromNode = from.getCredentials();
|
||||
|
|
Loading…
Reference in New Issue