mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Fix description length
This commit is contained in:
parent
32048f2a8d
commit
e858f0b880
@ -185,6 +185,11 @@ def main():
|
||||
state, description, test_results, additional_logs = process_results(output_path)
|
||||
|
||||
if timeout_expired is not None:
|
||||
name = f"Timeout expired for process execution: {run_cmd}"
|
||||
if len(name) > 140:
|
||||
name = name[:136]
|
||||
name += " ..."
|
||||
|
||||
test_results.append(
|
||||
TestResult(
|
||||
f"Timeout expired for process execution: {run_cmd}",
|
||||
|
Loading…
Reference in New Issue
Block a user