Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit f7fdd42

Browse files
committed
fix: readable
1 parent 8af6b78 commit f7fdd42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/e2e-test/test_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def start_server_nix() -> bool:
7979
start_time = time.time()
8080
while time.time() - start_time < timeout:
8181
# Use select to check if there's data to read from stdout or stderr
82-
readable, _, _ = select.select([process.stdout, process.stderr], [], [], 3.0)
82+
readable, _, _ = select.select([process.stdout, process.stderr], [], [], 0.1)
8383

8484
for stream in readable:
8585
line = stream.readline()

0 commit comments

Comments
 (0)