Skip to content

Commit e9dbf4a

Browse files
committed
Fix incorrect formatting in the iSCSI extension
Change-Id: I141c205dec838c64126106186a1352d032d8d987
1 parent 698211b commit e9dbf4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ironic_python_agent/extensions/iscsi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,9 +183,9 @@ def start_iscsi_target(self, iqn=None, wipe_disk_metadata=False,
183183
_start_lio(iqn, portal_port, device)
184184
LOG.debug('Linux-IO configuration: %s', rts_root.dump())
185185

186-
LOG.info('Created iSCSI target with iqn %(iqn)s, portal_port %(port)d,'
186+
LOG.info('Created iSCSI target with iqn %(iqn)s, portal port %(port)d,'
187187
' on device %(dev)s using %(method)s',
188-
{'iqn': iqn, 'portal_port': portal_port, 'dev': device,
188+
{'iqn': iqn, 'port': portal_port, 'dev': device,
189189
'method': 'tgtd' if rts_root is None else 'linux-io'})
190190

191191
return {"iscsi_target_iqn": iqn}

0 commit comments

Comments
 (0)