You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cloudstack.apache.org by jburwell <gi...@git.apache.org> on 2016/12/01 02:39:52 UTC

[GitHub] cloudstack pull request #1798: CLOUDSTACK-9631: API: affinitygroupids or aff...

Github user jburwell commented on a diff in the pull request:

    https://github.com/apache/cloudstack/pull/1798#discussion_r90372709
  
    --- Diff: api/src/org/apache/cloudstack/api/command/user/affinitygroup/UpdateVMAffinityGroupCmd.java ---
    @@ -96,6 +96,10 @@ public Long getId() {
                 throw new InvalidParameterValueException("affinitygroupids parameter is mutually exclusive with affinitygroupnames parameter");
             }
     
    +        if (affinityGroupNameList == null && affinityGroupIdList == null) {
    +            throw new InvalidParameterValueException("affinitygroupids parameter or affinitygroupnames parameter must be given");
    +        }
    +
    --- End diff --
    
    Lines 95-102 should be at the beginning of the `execute` method rather than in an accessor.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---