You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by na...@apache.org on 2014/04/04 11:43:41 UTC

git commit: JCLOUDS-503 - Missing c3.large from AWSEC2HardwareSupplier

Repository: jclouds
Updated Branches:
  refs/heads/master 222779bbc -> fbb1ffa81


JCLOUDS-503 - Missing c3.large from AWSEC2HardwareSupplier


Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/fbb1ffa8
Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/fbb1ffa8
Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/fbb1ffa8

Branch: refs/heads/master
Commit: fbb1ffa81d8cfd2d5b87e8d34f3c25ef4016e126
Parents: 222779b
Author: Matheus Cunha <ma...@gmail.com>
Authored: Thu Apr 3 19:21:48 2014 +0000
Committer: Ignasi Barrera <na...@apache.org>
Committed: Fri Apr 4 11:01:12 2014 +0200

----------------------------------------------------------------------
 .../jclouds/aws/ec2/compute/suppliers/AWSEC2HardwareSupplier.java  | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/fbb1ffa8/providers/aws-ec2/src/main/java/org/jclouds/aws/ec2/compute/suppliers/AWSEC2HardwareSupplier.java
----------------------------------------------------------------------
diff --git a/providers/aws-ec2/src/main/java/org/jclouds/aws/ec2/compute/suppliers/AWSEC2HardwareSupplier.java b/providers/aws-ec2/src/main/java/org/jclouds/aws/ec2/compute/suppliers/AWSEC2HardwareSupplier.java
index 0abc94f..d0b6826 100644
--- a/providers/aws-ec2/src/main/java/org/jclouds/aws/ec2/compute/suppliers/AWSEC2HardwareSupplier.java
+++ b/providers/aws-ec2/src/main/java/org/jclouds/aws/ec2/compute/suppliers/AWSEC2HardwareSupplier.java
@@ -22,6 +22,7 @@ import static org.jclouds.ec2.compute.domain.EC2HardwareBuilder.c3_2xlarge;
 import static org.jclouds.ec2.compute.domain.EC2HardwareBuilder.c3_4xlarge;
 import static org.jclouds.ec2.compute.domain.EC2HardwareBuilder.c3_8xlarge;
 import static org.jclouds.ec2.compute.domain.EC2HardwareBuilder.c3_xlarge;
+import static org.jclouds.ec2.compute.domain.EC2HardwareBuilder.c3_large;
 import static org.jclouds.ec2.compute.domain.EC2HardwareBuilder.cc1_4xlarge;
 import static org.jclouds.ec2.compute.domain.EC2HardwareBuilder.cc2_8xlarge;
 import static org.jclouds.ec2.compute.domain.EC2HardwareBuilder.cg1_4xlarge;
@@ -84,6 +85,7 @@ public class AWSEC2HardwareSupplier extends EC2HardwareSupplier {
       sizes.add(t1_micro().build());
       sizes.add(c1_medium().build());
       sizes.add(c1_xlarge().build());
+      sizes.add(c3_large().build());
       sizes.add(c3_xlarge().build());
       sizes.add(c3_2xlarge().build());
       sizes.add(c3_4xlarge().build());