From a50550a9e6d30e1d880142389d3e258880c18da9 Mon Sep 17 00:00:00 2001 From: Maxim Deb Natkh Date: Tue, 21 Jan 2025 17:55:56 +0100 Subject: [PATCH] fix dmesg and strace --- cloud/storage/core/tools/testing/fio/lib/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/storage/core/tools/testing/fio/lib/__init__.py b/cloud/storage/core/tools/testing/fio/lib/__init__.py index 5077bc5085b..5c9d46a430b 100644 --- a/cloud/storage/core/tools/testing/fio/lib/__init__.py +++ b/cloud/storage/core/tools/testing/fio/lib/__init__.py @@ -405,7 +405,7 @@ def monitor_fio_progress(): ) as strace_output: try: subprocess.run( - ["strace", "-p", str(pid)], + ["sudo", "strace", "-p", str(pid)], stdout=strace_output, stderr=strace_output, timeout=10,