-
Notifications
You must be signed in to change notification settings - Fork 366
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
server create bug #711
Comments
@wumingcheng I just tested it with following code and it works, here is the response
1 > POST http://10.193.82.103:8774/v2.1/a7bcb49a97784e49bbb09fe8b0f47ad1/servers INFO: 1 * Client response received on thread main |
@vinodborole The code |
@wumingcheng It uses the SecurityGroupInternal subclass; following is the code from NovaServerCreate.java
|
@vinodborole ok,thx |
Cannot create a server with "security_groups", because there is a bug about securityGroups of "NovaServerCreate.java"
please change the code
" @JsonProperty("security_groups")
private List<SecurityGroup> securityGroups;"
to
"@JsonProperty("security_groups")
private List<NovaSecurityGroup> securityGroups;"
The text was updated successfully, but these errors were encountered: