Skip to content

Commit

Permalink
fix(test/e2e): avoid deadlock due to asan
Browse files Browse the repository at this point in the history
Signed-off-by: Roberto Scolaro <[email protected]>
  • Loading branch information
therealbobo committed Mar 18, 2024
1 parent 8f7eef3 commit 33af608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def sinsp(request, docker_client: docker.client.DockerClient):
yield reader

reader.stop()
process.terminate()
process.kill()
process.wait()
assert process.returncode == 0, f'sinsp-example terminated with code {process.returncode}'

Expand Down

0 comments on commit 33af608

Please sign in to comment.