Skip to content

Commit d908f85

Browse files
author
Likitha Shetty
committed
CLOUDSTACK-1444. Fix EC2 Query API to support latest ec2 api version 2012-08-15 [Support for EC2 API version 2012-08-15]
Signed-off-by: Likitha Shetty <likitha.shetty@citrix.com>
1 parent 7a80031 commit d908f85

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

awsapi/conf/ec2-service.properties.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
managementServer=127.0.0.1
1919
cloudAPIPort=8080
2020
cloudstackVersion=2.2.0
21-
WSDLVersion=2010-11-15
21+
WSDLVersion=2012-08-15
2222
keystore=xes.keystore
2323
keystorePass=apache
2424

awsapi/src/com/cloud/bridge/service/EC2RestServlet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ public void init( ServletConfig config ) throws ServletException {
208208
}
209209
String keystore = EC2Prop.getProperty( "keystore" );
210210
keystorePassword = EC2Prop.getProperty( "keystorePass" );
211-
wsdlVersion = EC2Prop.getProperty( "WSDLVersion", "2010-11-15" );
211+
wsdlVersion = EC2Prop.getProperty( "WSDLVersion", "2012-08-15" );
212212
version = EC2Prop.getProperty( "cloudbridgeVersion", "UNKNOWN VERSION" );
213213

214214
String installedPath = System.getenv("CATALINA_HOME");

0 commit comments

Comments
 (0)