Remove duplicated logging in configdrive creation

Ironic-lib logs a message when configdrive is created
successfully. Remove duplicate message from IPA.

Change-Id: I2af81cdfda4cfc004288f44d14a5c127639cc1f1
This commit is contained in:
Shivanand Tendulker 2016-10-23 22:01:13 -07:00
parent 3527c0f25c
commit 7471d4004e

View File

@ -472,13 +472,9 @@ class StandbyExtension(base.BaseAgentExtension):
# wherein new IPA is being used with older version
# of Ironic that did not pass 'node_uuid' in 'image_info'
node_uuid = image_info.get('node_uuid', 'local')
starttime = time.time()
disk_utils.create_config_drive_partition(node_uuid,
device,
configdrive)
totaltime = time.time() - starttime
LOG.info('configdrive copied to {0} in {1} '
'seconds.'.format(device, totaltime))
msg = 'image ({}) written to device {} '
result_msg = _message_format(msg, image_info, device,
self.partition_uuids)