Clean up wait_for_resource_deletion message

Add missing space and punctuation to make this
message look cleaner.

Change-Id: I595291b68d4fef884888668d3e3c2d5d73b0c4d9
This commit is contained in:
Eric Harney 2022-01-07 14:21:50 -05:00
parent fd00bffb96
commit 941043fcc7
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,