Signed-off-by: Zack Cerza <zack.cerza@inktank.com>
stderr=subprocess.STDOUT)
while boot_proc.poll() is None:
for line in boot_proc.stdout.readlines():
- log.info(line)
+ log.info(line.strip())
log.info("Bootstrap exited with status %s", boot_proc.returncode)
finally:
stderr=subprocess.STDOUT)
while report_proc.poll() is None:
for line in report_proc.stdout.readlines():
- log.info(line)
+ log.info(line.strip())
time.sleep(1)
log.info("Reported results via the teuthology-report command")
except Exception: