From 3defb7eee3f4c171696ddb4094a9831eee75dd03 Mon Sep 17 00:00:00 2001 From: Kushal Date: Wed, 20 Sep 2023 22:38:06 +0530 Subject: [PATCH] Fixing sanity issues --- plugins/module_utils/redfish_utils.py | 2 +- plugins/modules/redfish_config.py | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/plugins/module_utils/redfish_utils.py b/plugins/module_utils/redfish_utils.py index 8a74b3319a8..026e24410fc 100644 --- a/plugins/module_utils/redfish_utils.py +++ b/plugins/module_utils/redfish_utils.py @@ -3606,4 +3606,4 @@ def create_volume(self, volume_details, storage_subsystem_id): if response['ret'] is False: return response return {'ret': True, 'changed': True, - 'msg': "Volume Created"} \ No newline at end of file + 'msg': "Volume Created"} diff --git a/plugins/modules/redfish_config.py b/plugins/modules/redfish_config.py index 9001619080c..82cbcdff0f5 100644 --- a/plugins/modules/redfish_config.py +++ b/plugins/modules/redfish_config.py @@ -152,13 +152,6 @@ type: dict default: {} version_added: '7.4.0' - storage_subsystem_id: - required: false - description: - - Id of the Storage Subsystem on which the volume is to be created. - type: str - default: '' - version_added: '7.4.0' author: - "Jose Delarosa (@jose-delarosa)" - "T S Kushal (@TSKushal)"