From 747300b369afc3257222f3af6613bd9aeecfabeb Mon Sep 17 00:00:00 2001 From: zhufl <zhu.fanglei@zte.com.cn> Date: Tue, 14 Apr 2020 14:23:47 +0800 Subject: [PATCH] [Trivial]Add space between words in log message This is to add space between words in log message in wait_for_volume_attachment_remove. Change-Id: I355bc829e7c0f01613fc907a6bf9e03b785ba3ea --- tempest/common/waiters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tempest/common/waiters.py b/tempest/common/waiters.py index e242301620..14790d6eea 100644 --- a/tempest/common/waiters.py +++ b/tempest/common/waiters.py @@ -230,7 +230,7 @@ def wait_for_volume_attachment_remove(client, volume_id, attachment_id): while any(attachment_id == a['attachment_id'] for a in attachments): time.sleep(client.build_interval) if int(time.time()) - start >= client.build_timeout: - message = ('Failed to remove attachment %s from volume %s' + message = ('Failed to remove attachment %s from volume %s ' 'within the required time (%s s).' % (attachment_id, volume_id, client.build_timeout)) raise lib_exc.TimeoutException(message)