summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2020-07-07 21:05:43 +0000
committerGerrit Code Review <review@openstack.org>2020-07-07 21:05:43 +0000
commitfa33c53e5c64b1ce04b9082d6aa429651fd90ca8 (patch)
tree93709746245bd626bbca22ec7a4d4efed24cca8a
parent99e2f2b1078b64fe242092fa8305bda0beb9f6cc (diff)
parentaf897bc8287afe9a5c2350e37d191a13530b1f99 (diff)
downloadironic-fa33c53e5c64b1ce04b9082d6aa429651fd90ca8.tar.gz
Merge "Fix missing print format in log message"
-rw-r--r--ironic/drivers/modules/drac/raid.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/ironic/drivers/modules/drac/raid.py b/ironic/drivers/modules/drac/raid.py
index facc0aeba..cd831af6c 100644
--- a/ironic/drivers/modules/drac/raid.py
+++ b/ironic/drivers/modules/drac/raid.py
@@ -371,8 +371,7 @@ def list_raid_settings(node):
client = drac_common.get_drac_client(node)
return client.list_raid_settings()
except drac_exceptions.BaseClientException as exc:
- LOG.error('DRAC driver failed to list raid settings'
- 'on %(raid_controller_fqdd)s '
+ LOG.error('DRAC driver failed to list raid settings '
'for node %(node_uuid)s. '
'Reason: %(error)s.',
{'node_uuid': node.uuid,