Fix debug logs in _stale_resource_needs_retry()

Missing parameters introduced by 22eb2e2538.

Change-Id: I5d49c3ee0d076e2673d0b2bbacf04c2274e56da7
This commit is contained in:
Zane Bitter 2018-05-03 19:28:17 -04:00
parent 26bffd56db
commit 253ae6ce63
1 changed files with 2 additions and 2 deletions

View File

@ -87,9 +87,9 @@ class CheckResource(object):
return True
elif (rs_obj.engine_id is None and
rs_obj.current_template_id == prev_template_id):
LOG.debug('Resource id=%d stale; retrying check')
LOG.debug('Resource id=%d stale; retrying check', rsrc.id)
return True
LOG.debug('Resource id=%d modified by another traversal')
LOG.debug('Resource id=%d modified by another traversal', rsrc.id)
return False
def _trigger_rollback(self, stack):