From eab18d042c395cfbe2f14e8daf371bf4508ba4ee Mon Sep 17 00:00:00 2001
From: Petr Shumilov
Date: Fri, 23 Jan 2026 01:15:20 +0300
Subject: [PATCH] Extend log file creation timeout to 30 seconds
Signed-off-by: Petr Shumilov
---
tests/python/lib/file_utils.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/python/lib/file_utils.py b/tests/python/lib/file_utils.py
index 8088df2216..bbca46999f 100644
--- a/tests/python/lib/file_utils.py
+++ b/tests/python/lib/file_utils.py
@@ -126,7 +126,7 @@ def search_k2_bin():
return os.getenv("K2_BIN")
-def wait_for_file_creation(file_path, check_interval=0.1, attempts=20):
+def wait_for_file_creation(file_path, check_interval=0.1, attempts=300):
for i in range(attempts):
if os.path.exists(file_path):
break