Skip to content

Commit

Permalink
fix: set message 'processor was disposed' to level debug. (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
karel-rehor authored Sep 11, 2024
1 parent 9d92767 commit e48744e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion influxdb_client_3/write_client/client/write_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down

0 comments on commit e48744e

Please sign in to comment.