mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-8217: Fixed marvin base library method for passing 'lbdevicecapacity' parameter while adding netscaler device
Signed-off-by: SrikanteswaraRao Talluri <talluri@apache.org>
This commit is contained in:
parent
eab63a6dd9
commit
015aed9bef
|
|
@ -3655,8 +3655,7 @@ class NetScaler:
|
|||
str(services["privateinterface"]) + '&'
|
||||
url = url + 'numretries=' + str(services["numretries"]) + '&'
|
||||
|
||||
if not services["lbdevicededicated"] and \
|
||||
"lbdevicecapacity" in services:
|
||||
if "lbdevicecapacity" in services:
|
||||
url = url + 'lbdevicecapacity=' + \
|
||||
str(services["lbdevicecapacity"]) + '&'
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue