Fix 'cell export' no attribute exception

This patch resolves an issue in trying to use the 'overcloud cell
export' command where the old tripleoclient.orchestration
property was still in use. This patch updates the code to
access the orchestration client directly similar to what we did in
cdcf16ee45.

Change-Id: If13bbe77b8ea1a59cbc1d8c8b8e3fc652a9f0b15
Closes-Bug: 1939167
This commit is contained in:
Dan Prince 2021-08-06 12:44:22 -04:00
parent 8031acb16b
commit 12d9efbdae
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ class ExportCell(command.Command):
# prepare clients to access the environment
clients = self.app.client_manager
heat = clients.tripleoclient.orchestration
heat = clients.orchestration
data = export.export_passwords(heat, control_plane_stack)