diff options
author | dongwenjuan <dong.wenjuan@zte.com.cn> | 2018-08-22 09:48:58 +0800 |
---|---|---|
committer | dongwenjuan <dong.wenjuan@zte.com.cn> | 2018-08-23 17:44:49 +0800 |
commit | da25598a6a31abe0579ffed12d1719e5ff75f9a7 (patch) | |
tree | 7b51732d5864ea936d907b85a8595bd7c4e6142f /doctor_tests/installer/mcp.py | |
parent | f9e1e3b1ae4be80bc2dc61d9c4213c81c091ea72 (diff) |
bugfix: add doctor datasource in congress
Change-Id: I465fd6c59daf99dd543488a15819dab78e8cdd7b
Signed-off-by: dongwenjuan <dong.wenjuan@zte.com.cn>
Diffstat (limited to 'doctor_tests/installer/mcp.py')
-rw-r--r-- | doctor_tests/installer/mcp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doctor_tests/installer/mcp.py b/doctor_tests/installer/mcp.py index e7e41dbe..9cfff92d 100644 --- a/doctor_tests/installer/mcp.py +++ b/doctor_tests/installer/mcp.py @@ -78,7 +78,7 @@ class McpInstaller(BaseInstaller): self.controller_clients.append(client) self._run_apply_patches(client, restart_cm_cmd, - self.cm_set_script) + [self.cm_set_script]) def restore_apply_patches(self): self.log.info('restore apply patches start......') @@ -87,4 +87,4 @@ class McpInstaller(BaseInstaller): for client in self.controller_clients: self._run_apply_patches(client, restart_cm_cmd, - self.cm_restore_script) + [self.cm_restore_script]) |