tests: increase benchmark timeouts from 10 to 30s (#8188)

Increase benchmark timeouts from 10 to 30s

Co-authored-by: Yuqi Tang <yuqi.tang@datastax.com>
This commit is contained in:
Jordan Frazier 2025-05-23 12:22:17 -07:00 committed by GitHub
commit 570cdcd6f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,7 +32,7 @@ async def get_build_events(client: AsyncClient, job_id: str, headers: dict[str,
return await client.get(f"api/v1/build/{job_id}/events", headers=headers_with_accept)
async def consume_and_assert_stream(response, job_id, timeout=10.0):
async def consume_and_assert_stream(response, job_id, timeout=30.0):
"""Consume the event stream and assert the expected event structure.
Args: