Correct logging call in _heartbeat_service_wait method

Currently, _heartbeat_service_wait() is causing an error due to a
missing parameter in the call. This change resolves this issue by
removing the reference to the missing parameter.

Change-Id: I03faa67953daf282ae1b576a2a949c94a2efa973
This commit is contained in:
Jacob Anders 2024-04-10 15:40:11 +10:00
parent 7df06977d3
commit e04741ac3f
1 changed files with 1 additions and 1 deletions

View File

@ -584,7 +584,7 @@ class HeartbeatMixin(object):
try:
node.touch_provisioning()
if not node.service_step:
LOG.debug('Node %s just booted to start %s service',
LOG.debug('Node %s just booted to start service',
node.uuid)
msg = _('Node failed to start the first service step')
task.process_event('resume')