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:
Gaurav Aradhye 2015-02-05 15:53:20 +05:30 committed by SrikanteswaraRao Talluri
parent eab63a6dd9
commit 015aed9bef
1 changed files with 1 additions and 2 deletions

View File

@ -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"]) + '&'