Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
1. [#167](https://github.com/InfluxCommunity/influxdb3-python/pull/167):
- Remove incorrect symbol `>>` for config.yml.
- Added spacing for `<<` and `>>` just for consistency.
1. [176](https://github.com/InfluxCommunity/influxdb3-python/pull/176): Use `ConstantFlightServerDelayed` for timeout tests.

## 0.16.0 [2025-09-15]

Expand Down
4 changes: 2 additions & 2 deletions tests/test_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ async def fibo(iters):
@asyncio_run
async def test_query_async_timeout(self):
with pytest.raises(FlightTimedOutError):
with ConstantFlightServer() as server:
with ConstantFlightServerDelayed() as server:
connection_string = f"grpc://localhost:{server.port}"
token = "my_token"
database = "my_database"
Expand All @@ -452,7 +452,7 @@ async def test_query_async_timeout(self):

def test_query_timeout_per_call_override(self):
with pytest.raises(FlightTimedOutError):
with ConstantFlightServer() as server:
with ConstantFlightServerDelayed() as server:
connection_string = f"grpc://localhost:{server.port}"
token = "my_token"
database = "my_database"
Expand Down
Loading