Prasanna Santhanam created CLOUDSTACK-2708:
----------------------------------------------
Summary: AutoScale - listConditions is mapped to CounterResponse instead of ConditionResponse
Key: CLOUDSTACK-2708
URL: https://issues.apache.org/jira/browse/CLOUDSTACK-2708
Project: CloudStack
Issue Type: Bug
Security Level: Public (Anyone can view this level - this is the default.)
Components: API
Affects Versions: 4.2.0
Reporter: Prasanna Santhanam
Assignee: Prasanna Santhanam
Fix For: 4.2.0
@APICommand(name = "listConditions", description = "List Conditions for the specific user",
responseObject = CounterResponse.class)
public class ListConditionsCmd extends BaseListAccountResourcesCmd {
Should be changed to:
@APICommand(name = "listConditions", description = "List Conditions for the specific user",
responseObject = ConditionResponse.class)
public class ListConditionsCmd extends BaseListAccountResourcesCmd {
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
|