Fix exception on provisioning with idrac hw type

This patch fixes an exception that occurs in a logging statement when a node
is provisioned using the idrac hardware type.

Change-Id: I0fae987aef56bc6f40e11024c7b9d12587ff4c35
Story: 2006411
Task: 36297
This commit is contained in:
Christopher Dearborn 2019-08-16 10:19:47 -04:00
parent 028ab71d3f
commit f9e2b6f2cb

View File

@ -259,8 +259,8 @@ def set_boot_device(node, device, persistent=False):
timeout = CONF.drac.boot_device_job_status_timeout
end_time = time.time() + timeout
LOG.debug('Waiting for BIOS configuration job %{job_id}s '
'to be scheduled for node %{node}s',
LOG.debug('Waiting for BIOS configuration job %(job_id)s '
'to be scheduled for node %(node)s',
{'job_id': job_id,
'node': node.uuid})