Merge "Clean up wait_for_resource_deletion message"

This commit is contained in:
Zuul 2022-01-16 23:31:39 +00:00 committed by Gerrit Code Review
commit 207a045619
1 changed files with 2 additions and 2 deletions

View File

@ -907,8 +907,8 @@ class RestClient(object):
if int(time.time()) - start_time >= self.build_timeout:
message = ('Failed to delete %(resource_type)s %(id)s within '
'the required time (%(timeout)s s). Timer started '
'at %(start_time)s. Timer ended at %(end_time)s'
'waited for %(wait_time)s' %
'at %(start_time)s. Timer ended at %(end_time)s. '
'Waited for %(wait_time)s s.' %
{'resource_type': self.resource_type, 'id': id,
'timeout': self.build_timeout,
'start_time': start_time,