8000 docs: update CHANGELOG.md · chaosegg/influxdb-client-python@4fce596 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4fce596

Browse files
committed
docs: update CHANGELOG.md
1 parent 8c8ab27 commit 4fce596

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## 1.26.0 [unreleased]
22

3+
### Documentation
4+
1. [#397](https://github.com/influxdata/influxdb-client-python/pull/397): Add an example: How to use RxPY to prepare batches by maximum bytes count
5+
36
## 1.25.0 [2022-01-20]
47

58
### Features

examples/write_batching_by_bytes_count.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def _buffer_bytes_size(buffer: Collection['bytes']):
3939

4040
def buffer_by_bytes_count(bytes_count: int = 5120):
4141
"""
42-
Buffer emitted items until the byte count is reached.
42+
Buffer items until the bytes count is reached.
4343
"""
4444

4545
def _buffer_by_bytes_count(source: Observable) -> Observable:
@@ -82,7 +82,7 @@ def on_completed():
8282
retries = WritesRetry(total=3, retry_interval=1, exponential_base=2)
8383
with InfluxDBClient(url='http://localhost:8086', token='my-token', org='my-org', retries=retries) as client:
8484
"""
85-
Use synchronous version of WriteApi to strongly depends on result of write
85+
Use synchronous version of WriteApi.
8686
"""
8787
write_api = client.write_api(write_options=SYNCHRONOUS)
8888

0 commit comments

Comments
 (0)
0