1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-17 01:11:28 +00:00

[PR #11143/23e81b8d backport][stable-12] replace redundant to_native()/to_text() occurrences, batch 8 (#11164)

replace redundant to_native()/to_text() occurrences, batch 8 (#11143)

* replace redundant to_native()/to_text() occurrences, batch 8

* add changelog frag

* Update plugins/modules/jira.py



---------


(cherry picked from commit 23e81b8d30)

Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
patchback[bot] 2025-11-16 07:09:40 +01:00 committed by GitHub
parent 15d4fff749
commit 8a7f360558
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 68 additions and 58 deletions

View file

@ -101,7 +101,6 @@ from ansible_collections.community.general.plugins.module_utils.redfish_utils im
RedfishUtils,
REDFISH_COMMON_ARGUMENT_SPEC,
)
from ansible.module_utils.common.text.converters import to_native
class IdracRedfishUtils(RedfishUtils):
@ -217,14 +216,14 @@ def main():
result = rf_utils._find_systems_resource()
rf_utils.data_modification = True
if result["ret"] is False:
module.fail_json(msg=to_native(result["msg"]))
module.fail_json(msg=result["msg"])
for command in command_list:
if command == "CreateBiosConfigJob":
# execute only if we find a Managers resource
result = rf_utils._find_managers_resource()
if result["ret"] is False:
module.fail_json(msg=to_native(result["msg"]))
module.fail_json(msg=result["msg"])
result = rf_utils.create_bios_config_job()
if "job_id" in result:
return_values["job_id"] = result["job_id"]
@ -234,7 +233,7 @@ def main():
del result["ret"]
module.exit_json(changed=True, msg="Action was successful", return_values=return_values)
else:
module.fail_json(msg=to_native(result["msg"]))
module.fail_json(msg=result["msg"])
if __name__ == "__main__":