mirror of https://github.com/apache/cloudstack.git
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:
parent
2a20ac21ac
commit
d714ce54b5
|
|
@ -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()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue