Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: #110 - set message 'processor was disposed' to level debug. #111

Merged
merged 2 commits into from
Sep 11, 2024
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
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_complete(self):
self._disposable.dispose()
logger.info("the batching processor was disposed")
logger.debug("the batching processor was disposed")

Check warning on line 569 in influxdb_client_3/write_client/client/write_api.py

View check run for this annotation

Codecov / codecov/patch

influxdb_client_3/write_client/client/write_api.py#L569

Added line #L569 was not covered by tests

def __getstate__(self):
"""Return a dict of attributes that you want to pickle."""
Expand Down
Loading