mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 17:12:03 +00:00
Fix style
This commit is contained in:
parent
c680c951d3
commit
8db991faa0
@ -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")
|
||||
|
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user