From 71303b8a066fdf9e1552e96c6283acbaa5256a6f Mon Sep 17 00:00:00 2001 From: Tong Liu Date: Thu, 6 Oct 2016 03:20:25 +0000 Subject: [PATCH] NSXv3: Fix typo in cluster reinitialization NsxLib v3 cluster reinitialization fucntion is calling wrong method reinit_cluster. Fix the typo in this patch. Change-Id: Ib636afdad880351074f410cd12840ccfda0529bf --- vmware_nsx/nsxlib/v3/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmware_nsx/nsxlib/v3/__init__.py b/vmware_nsx/nsxlib/v3/__init__.py index 2956fa9b76..2a6ef45719 100644 --- a/vmware_nsx/nsxlib/v3/__init__.py +++ b/vmware_nsx/nsxlib/v3/__init__.py @@ -85,7 +85,7 @@ class NsxLib(object): resource, resource_type, project_name) def reinitialize_cluster(self, resource, event, trigger, **kwargs): - self.cluster.reinit_cluster() + self.cluster._reinit_cluster() class NsxLibPortMirror(utils.NsxLibApiBase):