We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41cf775 commit 851d47cCopy full SHA for 851d47c
ydb/tests/olap/lib/allure_utils.py
@@ -110,7 +110,7 @@ def _produce_sanitizer_report(node_errors: list[NodeErrors]) -> str:
110
111
for node_error in node_errors:
112
host = node_error.node.host
113
- if host not in reported_hosts:
+ if host not in reported_hosts and node_error.sanitizer_output is not None:
114
html += f'<details style="margin-bottom: 15px"><summary style="display: list-item">Sanitizer output at {host}</summary>'
115
html += f'<code>{node_error.sanitizer_output.replace('\n', '<br/>')}</code></details>'
116
reported_hosts.add(host)
0 commit comments