diff --git a/vmware_nsx/plugins/nsx_p/plugin.py b/vmware_nsx/plugins/nsx_p/plugin.py index 1f971dc47b..8b5334829d 100644 --- a/vmware_nsx/plugins/nsx_p/plugin.py +++ b/vmware_nsx/plugins/nsx_p/plugin.py @@ -1589,9 +1589,10 @@ class NsxPolicyPlugin(nsx_plugin_common.NsxPluginV3Base): tier0_uuid) try: - # Enable standby relocation on this router - self.nsxpolicy.tier1.set_standby_relocation( - router['id'], enable_standby_relocation=True) + # Enable standby relocation & FW on this router + self.nsxpolicy.tier1.update( + router['id'], disable_firewall=False, + enable_standby_relocation=True) except Exception as ex: LOG.warning("Failed to enable standby relocation for router " "%s: %s", router_id, ex)