Skip to content

Commit

Permalink
bump timeout new test
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-eq committed Nov 27, 2024
1 parent 06e6c4d commit d5eceb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ert/ui_tests/cli/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ async def _find_storage_process_pid() -> int:
while True:
for ert_child_process in ert_subprocess.children():
try:
if "storage_main" in "".join(ert_child_process.cmdline()):
if "storage" in "".join(ert_child_process.cmdline()):
print(ert_child_process.pid)
return ert_child_process.pid
except (ZombieProcess, NoSuchProcess):
Expand All @@ -984,7 +984,7 @@ async def _find_storage_process_pid() -> int:
await asyncio.sleep(0.05)

storage_process_pid = await asyncio.wait_for(
_find_storage_process_pid(), timeout=60
_find_storage_process_pid(), timeout=120
)
# wait for storage server to have connected to ert
await asyncio.sleep(5)
Expand Down

0 comments on commit d5eceb6

Please sign in to comment.