Issue 608:Starting a node with a location-id specifying an ec2 availability zone fails

This commit is contained in:
Adrian Cole 2011-07-04 22:03:55 -07:00
parent 575d819143
commit 4221d6292a
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ public class AWSEC2CreateNodesInGroupThenAddToSet extends EC2CreateNodesInGroupT
return Iterables.transform(client.getSpotInstanceServices().requestSpotInstancesInRegion(region, spotPrice,
count, spec, options), spotConverter);
} else {
return super.createNodesInRegionAndZone(zone, zone, count, template, instanceOptions);
return super.createNodesInRegionAndZone(region, zone, count, template, instanceOptions);
}
}