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
This commit is contained in:
Tong Liu 2016-10-06 03:20:25 +00:00
parent 0f317c6a0e
commit 71303b8a06
1 changed files with 1 additions and 1 deletions

View File

@ -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):