summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2019-08-22 18:22:28 +0000
committerGerrit Code Review <review@openstack.org>2019-08-22 18:22:28 +0000
commit9bbf5115c159a56362b8f0e8d85f3fe4c7fb481e (patch)
treecb92a6c24488f87c1249a43d23282906505e5f3a
parentf7595726882d631b861cb7dbe71d478cf232e976 (diff)
parentf9e2b6f2cb23877f47cffd59fbe28863153b050f (diff)
downloadironic-9bbf5115c159a56362b8f0e8d85f3fe4c7fb481e.tar.gz
Merge "Fix exception on provisioning with idrac hw type"
-rw-r--r--ironic/drivers/modules/drac/management.py4
1 files 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})