Fix style

This commit is contained in:
Igor Nikonov 2023-09-12 13:41:00 +00:00
parent c680c951d3
commit 8db991faa0
2 changed files with 2 additions and 2 deletions

View File

@ -150,7 +150,7 @@ def main():
with TeePopen(run_cmd, run_log_path, timeout=timeout) as process:
retcode = process.wait()
if process.timeout_exceeded:
logging.info(f"Timeout expired for command: {run_cmd}")
logging.info("Timeout expired for command: %s", run_cmd)
timeout_expired = True
elif retcode == 0:
logging.info("Run successfully")

View File

@ -179,7 +179,7 @@ def run_stress_test(docker_image_name):
with TeePopen(run_command, run_log_path, timeout=timeout) as process:
retcode = process.wait()
if process.timeout_exceeded:
logging.info(f"Timeout expired for command: {run_command}")
logging.info("Timeout expired for command: %s", run_command)
timeout_expired = True
elif retcode == 0:
logging.info("Run successfully")