We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc81c10 commit 41dd384Copy full SHA for 41dd384
plugins/modules/platform_update.py
@@ -900,7 +900,7 @@ def platform_update(module):
900
if output.get('IOAdapterUpdate', {}).get(vios_id, []):
901
available_io_updates = {'IOAdapterUpdate': {vios_id: output.get('IOAdapterUpdate', {}).get(vios_id, [])}}
902
else:
903
- error_msg = f"No available I/O adapters found for VIOS {output.get('vios_name')}"
+ error_msg = f"No available I/O adapters found for VIOS {io_update.get('vios_name')}"
904
module.fail_json(msg=error_msg)
905
906
io_id = str(io_update.get('vios_id')).zfill(3)
0 commit comments