mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-18 16:31:26 -07:00
Adding deprecation for timeout parameter from 10 to 60 for redfish_info, redfish_config and redfish_command (#7295)
* Adding deprecation for timeout from 10 to 60 for redfish_info, redfish_config and redfish_command * Adding changelog fragment and sanity fixes * Update changelogs/fragments/7295-adding_deprecation_for_timeout_in_redfish_info_config_command.yml Agreed. Thanks! Co-authored-by: Felix Fontein <felix@fontein.de> * Update changelogs/fragments/7295-adding_deprecation_for_timeout_in_redfish_info_config_command.yml Agreed. Thanks! Co-authored-by: Felix Fontein <felix@fontein.de> * Update plugins/modules/redfish_command.py Agreed. Thanks! Co-authored-by: Felix Fontein <felix@fontein.de> * Update plugins/modules/redfish_command.py Agreed. Thanks! Co-authored-by: Felix Fontein <felix@fontein.de> * Updating release version --------- Co-authored-by: Kushal <t-s.kushal@hpe.com> Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
43396efa2c
commit
eae7161bf0
4 changed files with 41 additions and 6 deletions
|
@ -109,7 +109,8 @@ options:
|
|||
timeout:
|
||||
description:
|
||||
- Timeout in seconds for HTTP requests to OOB controller.
|
||||
default: 10
|
||||
- The default value for this param is C(10) but that is being deprecated
|
||||
and it will be replaced with C(60) in community.general 9.0.0.
|
||||
type: int
|
||||
boot_override_mode:
|
||||
description:
|
||||
|
@ -782,7 +783,7 @@ def main():
|
|||
update_username=dict(type='str', aliases=["account_updatename"]),
|
||||
account_properties=dict(type='dict', default={}),
|
||||
bootdevice=dict(),
|
||||
timeout=dict(type='int', default=10),
|
||||
timeout=dict(type='int'),
|
||||
uefi_target=dict(),
|
||||
boot_next=dict(),
|
||||
boot_override_mode=dict(choices=['Legacy', 'UEFI']),
|
||||
|
@ -829,6 +830,16 @@ def main():
|
|||
supports_check_mode=False
|
||||
)
|
||||
|
||||
if module.params['timeout'] is None:
|
||||
timeout = 10
|
||||
module.deprecate(
|
||||
'The default value {0} for parameter param1 is being deprecated and it will be replaced by {1}'.format(
|
||||
10, 60
|
||||
),
|
||||
version='9.0.0',
|
||||
collection_name='community.general'
|
||||
)
|
||||
|
||||
category = module.params['category']
|
||||
command_list = module.params['command']
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue