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 ad38358 commit 7c3db9cCopy full SHA for 7c3db9c
tests/integration/test_temporary_data/test.py
@@ -55,6 +55,6 @@ def test_tmp_data_no_leftovers(start_cluster):
55
node.restart_clickhouse(kill=True)
56
path_to_data = "/var/lib/clickhouse/"
57
58
- # Check that there are no temporary files left
59
- result = node.exec_in_container(["ls", path_to_data + "tmp/"])
+ # Check that there are no temporary files left. Other than from the Sentry library.
+ result = node.exec_in_container([f"bash", "-c", "ls -1 {path_to_data}tmp/ | grep -v 'sentry'"])
60
assert result == ""
0 commit comments