CLOUDSTACK-3921: Don't change order of params in PublicIpAddress.create()

Or existing tests that depend on the order barf and fail.

Signed-off-by: Prasanna Santhanam <tsp@apache.org>
(cherry picked from commit ec054cde23113baa40ae35c6195bc666d3c1b8d0)
This commit is contained in:
Prasanna Santhanam 2013-08-01 19:24:50 +05:30
parent 2a20ac21ac
commit d714ce54b5
1 changed files with 2 additions and 2 deletions

View File

@ -1073,8 +1073,8 @@ class PublicIPAddress:
self.__dict__.update(items)
@classmethod
def create(cls, apiclient, accountid=None, zoneid=None, domainid=None,
isportable=None, services=None, networkid=None, projectid=None, vpcid=None):
def create(cls, apiclient, accountid=None, zoneid=None, domainid=None, services=None,
networkid=None, projectid=None, vpcid=None, isportable=None):
"""Associate Public IP address"""
cmd = associateIpAddress.associateIpAddressCmd()