From f9e2b6f2cb23877f47cffd59fbe28863153b050f Mon Sep 17 00:00:00 2001 From: Christopher Dearborn Date: Fri, 16 Aug 2019 10:19:47 -0400 Subject: 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 --- ironic/drivers/modules/drac/management.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ironic/drivers/modules/drac/management.py b/ironic/drivers/modules/drac/management.py index 339f3268d..56e49c557 100644 --- a/ironic/drivers/modules/drac/management.py +++ b/ironic/drivers/modules/drac/management.py @@ -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}) -- cgit v1.2.1