diff --git a/ydb/tests/olap/lib/allure_utils.py b/ydb/tests/olap/lib/allure_utils.py index bf465c083a14..ab1f714ad87a 100644 --- a/ydb/tests/olap/lib/allure_utils.py +++ b/ydb/tests/olap/lib/allure_utils.py @@ -110,7 +110,7 @@ def _produce_sanitizer_report(node_errors: list[NodeErrors]) -> str: for node_error in node_errors: host = node_error.node.host - if host not in reported_hosts: + if host not in reported_hosts and node_error.sanitizer_output is not None: html += f'
Sanitizer output at {host}' html += f'{node_error.sanitizer_output.replace('\n', '
')}
' reported_hosts.add(host)