Merge "Fix problem in cloud-init integration when no log file is writen yet"

This commit is contained in:
Zuul 2021-05-05 21:59:54 +00:00 committed by Gerrit Code Review
commit c622802435
1 changed files with 4 additions and 1 deletions

View File

@ -190,7 +190,10 @@ def wait_for_cloud_init_status(
output_file=str(output_file)) from ex
# show only the last log line
last_log_line = str(log_file).splitlines()[-1]
try:
last_log_line = str(log_file).splitlines()[-1]
except IndexError:
last_log_line = ""
LOG.debug(f"Waiting cloud-init status on host '{hostname}' to "
f"switch from '{actual_status}' to any of expected "
f"states ({', '.join(expected_states)}):\n\n"