mirror of https://github.com/apache/jclouds.git
typos
This commit is contained in:
parent
9672fda205
commit
dc4186afb7
|
@ -198,7 +198,7 @@ public class EC2CreateNodesInGroupThenAddToSet implements CreateNodesInGroupThen
|
||||||
// block until instance is running
|
// block until instance is running
|
||||||
logger.debug(">> awaiting status running instance(%s)", coordinates);
|
logger.debug(">> awaiting status running instance(%s)", coordinates);
|
||||||
nodeRunning.apply(runningInstanceToNodeMetadata.apply(startedInstance));
|
nodeRunning.apply(runningInstanceToNodeMetadata.apply(startedInstance));
|
||||||
logger.debug("<< running instance(%s)", coordinates);
|
logger.trace("<< running instance(%s)", coordinates);
|
||||||
logger.debug(">> associating elastic IP %s to instance %s", ip, coordinates);
|
logger.debug(">> associating elastic IP %s to instance %s", ip, coordinates);
|
||||||
client.getElasticIPAddressServices().associateAddressInRegion(region, ip, id);
|
client.getElasticIPAddressServices().associateAddressInRegion(region, ip, id);
|
||||||
logger.trace("<< associated elastic IP %s to instance %s", ip, coordinates);
|
logger.trace("<< associated elastic IP %s to instance %s", ip, coordinates);
|
||||||
|
|
|
@ -67,7 +67,7 @@ public class AWSEC2DestroyNodeStrategy extends EC2DestroyNodeStrategy {
|
||||||
credentialStore.remove("node#" + region + "/" + spotId);
|
credentialStore.remove("node#" + region + "/" + spotId);
|
||||||
} catch (NoSuchElementException e) {
|
} catch (NoSuchElementException e) {
|
||||||
}
|
}
|
||||||
super.destroyInstanceInRegion(region, id);
|
super.destroyInstanceInRegion(id, region);
|
||||||
} else {
|
} else {
|
||||||
client.getSpotInstanceServices().cancelSpotInstanceRequestsInRegion(region, spotId);
|
client.getSpotInstanceServices().cancelSpotInstanceRequestsInRegion(region, spotId);
|
||||||
credentialStore.remove("node#" + region + "/" + id);
|
credentialStore.remove("node#" + region + "/" + id);
|
||||||
|
|
Loading…
Reference in New Issue