Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[FIXED JENKINS-13432] Added support for M1Medium instance (which main…
…ly meainly mean bumping aws-java-sdk version)
  • Loading branch information
vjuranek committed Apr 12, 2012
1 parent 1ccd5e1 commit 589af85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -29,7 +29,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk</artifactId>
<version>1.2.15</version>
<version>1.3.7</version>
<exclusions>
<exclusion>
<groupId>commons-codec</groupId>
Expand Down
1 change: 1 addition & 0 deletions src/main/java/hudson/plugins/ec2/EC2Slave.java
Expand Up @@ -81,6 +81,7 @@ public EC2Slave(String instanceId) throws FormException, IOException {
switch (it) {
case T1Micro: return 1;
case M1Small: return 1;
case M1Medium: return 2;
case M1Large: return 4;
case C1Medium: return 5;
case M2Xlarge: return 6;
Expand Down

0 comments on commit 589af85

Please sign in to comment.