Fix logging for verification steps

The logging for verify_streps used the deploy-steps attribute,
leading to incorrect logs. Correct the logging statement to use
instance.verify_steps to accurately reflect the verification steps.

Change-Id: I6c9d415913e468b8e529ff88066fda81c4c6b456
Signed-off-by: Tatiana Kholkina <t.kholkina@maxima-int.com>
This commit is contained in:
Tatiana Kholkina
2025-08-05 08:14:36 +03:00
parent 14ca87cdcc
commit 49148f039b

View File

@@ -295,7 +295,7 @@ class BaseInterface(object, metaclass=abc.ABCMeta):
if instance.verify_steps:
LOG.debug('Found verify steps %(steps)s for interface '
'%(interface)s',
{'steps': instance.deploy_steps,
{'steps': instance.verify_steps,
'interface': instance.interface_type})
if instance.service_steps:
LOG.debug('Found service steps %(steps)s for interface '