vcenter_license: Fix fail_json call (#53933)

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
pull/53980/head
Abhijeet Kasurde 6 years ago committed by GitHub
parent 50d56ca89d
commit 866f934044
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -196,13 +196,13 @@ def main():
try:
assigned_license = lam.QueryAssignedLicenses(entityId=entityId)
except Exception as e:
module.fail_json('Could not query vCenter "%s" assigned license info due to %s.' % (entityId, to_native(e)))
module.fail_json(msg='Could not query vCenter "%s" assigned license info due to %s.' % (entityId, to_native(e)))
if not assigned_license or (len(assigned_license) != 0 and assigned_license[0].assignedLicense.licenseKey != license):
try:
lam.UpdateAssignedLicense(entity=entityId, licenseKey=license)
except Exception:
module.fail_json('Could not assign "%s" (%s) to vCenter.' % (license, key.name))
module.fail_json(msg='Could not assign "%s" (%s) to vCenter.' % (license, key.name))
result['changed'] = True
result['licenses'] = pyv.list_keys(lm.licenses)
else:

Loading…
Cancel
Save