test_prefetch: reduce timeout to default 5m from 10m (#10105)

## Problem

`test_prefetch` is flaky
(https://github.com/neondatabase/neon/issues/9961), but if it passes,
the run time is less than 30 seconds — we don't need an extended timeout
for it.

## Summary of changes
- Remove extended test timeout for `test_prefetch`
This commit is contained in:
Alexander Bayandin
2024-12-13 14:52:54 +00:00
committed by GitHub
parent ce8eb089f3
commit 2c91062828

View File

@@ -7,7 +7,6 @@ from fixtures.neon_fixtures import NeonEnvBuilder
@pytest.mark.parametrize("shard_count", [None, 4])
@pytest.mark.timeout(600)
def test_prefetch(neon_env_builder: NeonEnvBuilder, shard_count: int | None):
if shard_count is not None:
neon_env_builder.num_pageservers = shard_count