pyvcloud
pyvcloud copied to clipboard
Fix - can't toggle gateway high availability
if ha: # <----
gateway.Configuration.HaEnabled = E.HaEnabled(ha)
if ha value is set to False the code will never be executed. So that the Gateway High Availability will never be Disabled.
if ha is not None: # <----
gateway.Configuration.HaEnabled = E.HaEnabled(ha)
Any update about this?