mirror of
https://opendev.org/openstack/ironic.git
synced 2026-01-16 23:01:47 +00:00
Fix log message var reference
Fixes an issue with debug logging referencing node vs node_uuid. Change-Id: Ic7de9826fbec32038947be89b14f6dfdc2248de4
This commit is contained in:
parent
58956b8e6b
commit
578c02813d
1 changed files with 1 additions and 1 deletions
|
|
@ -626,7 +626,7 @@ def _construct_volume_payload(
|
|||
payload['Drives'] = [{"@odata.id": _drive_path(storage, d)} for d in
|
||||
physical_disks]
|
||||
LOG.debug('Payload for RAID logical disk creation on node %(node_uuid)s: '
|
||||
'%(payload)r', {'node': node.uuid, 'payload': payload})
|
||||
'%(payload)r', {'node_uuid': node.uuid, 'payload': payload})
|
||||
return payload
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue