Repository: cloudstack Updated Branches: refs/heads/4.4-forward 4f0820b86 -> 0c40adfc4
While listing Public IP listall should always be true Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/0c40adfc Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/0c40adfc Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/0c40adfc Branch: refs/heads/4.4-forward Commit: 0c40adfc4a9620ed29604f7aedbde0e1a077a68f Parents: 4f0820b Author: Girish Shilamkar <gir...@clogeny.com> Authored: Fri May 9 22:26:51 2014 +0530 Committer: Girish Shilamkar <gir...@clogeny.com> Committed: Fri May 9 22:29:40 2014 +0530 ---------------------------------------------------------------------- tools/marvin/marvin/lib/base.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/0c40adfc/tools/marvin/marvin/lib/base.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/lib/base.py b/tools/marvin/marvin/lib/base.py index cd113f8..03b03b6 100644 --- a/tools/marvin/marvin/lib/base.py +++ b/tools/marvin/marvin/lib/base.py @@ -1397,8 +1397,7 @@ class PublicIPAddress: cmd = listPublicIpAddresses.listPublicIpAddressesCmd() [setattr(cmd, k, v) for k, v in kwargs.items()] - if 'account' in kwargs.keys() and 'domainid' in kwargs.keys(): - cmd.listall=True + cmd.listall=True return(apiclient.listPublicIpAddresses(cmd))