mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-1444. Fix EC2 Query API to support latest ec2 api version 2012-08-15
[Support for EC2 API version 2012-08-15]
This commit is contained in:
parent
cefd70e711
commit
f74b243460
|
|
@ -18,7 +18,7 @@
|
|||
managementServer=127.0.0.1
|
||||
cloudAPIPort=8080
|
||||
cloudstackVersion=2.2.0
|
||||
WSDLVersion=2010-11-15
|
||||
WSDLVersion=2012-08-15
|
||||
keystore=xes.keystore
|
||||
keystorePass=apache
|
||||
|
||||
|
|
|
|||
|
|
@ -208,7 +208,7 @@ public class EC2RestServlet extends HttpServlet {
|
|||
}
|
||||
String keystore = EC2Prop.getProperty( "keystore" );
|
||||
keystorePassword = EC2Prop.getProperty( "keystorePass" );
|
||||
wsdlVersion = EC2Prop.getProperty( "WSDLVersion", "2010-11-15" );
|
||||
wsdlVersion = EC2Prop.getProperty( "WSDLVersion", "2012-08-15" );
|
||||
version = EC2Prop.getProperty( "cloudbridgeVersion", "UNKNOWN VERSION" );
|
||||
|
||||
String installedPath = System.getenv("CATALINA_HOME");
|
||||
|
|
|
|||
Loading…
Reference in New Issue