From 912482cf5ada179298560b41802574e8c3e59573 Mon Sep 17 00:00:00 2001 From: karel rehor Date: Tue, 10 Sep 2024 13:34:18 +0200 Subject: [PATCH 1/2] fix: #110 - set message 'processor was disposed' to level debug. --- influxdb_client_3/write_client/client/write_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/influxdb_client_3/write_client/client/write_api.py b/influxdb_client_3/write_client/client/write_api.py index 38d22cd..3519161 100644 --- a/influxdb_client_3/write_client/client/write_api.py +++ b/influxdb_client_3/write_client/client/write_api.py @@ -566,7 +566,7 @@ def _on_error(ex): def _on_complete(self): self._disposable.dispose() - logger.info("the batching processor was disposed") + logger.debug("the batching processor was disposed") def __getstate__(self): """Return a dict of attributes that you want to pickle.""" From 8a4845ffc4c966d8dcaf608f3aa1061e54fe8a19 Mon Sep 17 00:00:00 2001 From: karel rehor Date: Tue, 10 Sep 2024 16:13:14 +0200 Subject: [PATCH 2/2] docs: update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bca57eb..877ae5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ 1. [#108](https://github.com/InfluxCommunity/influxdb3-python/pull/108): Better expose access to response headers in `InfluxDBError`. Example `handle_http_error` added. +### Bug Fixes + +1. [#111](https://github.com/InfluxCommunity/influxdb3-python/pull/111): Reduce log level of disposal of batch processor to DEBUG + ## 0.8.0 [2024-08-12] ### Features