Skip to content

Commit 1faa708

Browse files
committed
docs: updated CHANGELOG.md
1 parent 4c8d6b8 commit 1faa708

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
### Features
44
1. [#203](https://github.com/influxdata/influxdb-client-python/pull/203): Allow configuring client via TOML file.
55

6+
### API
7+
1. [#209](https://github.com/influxdata/influxdb-client-python/pull/209): Allow setting shard-group durations for buckets via API
8+
69
### Documentation
710
1. [#202](https://github.com/influxdata/influxdb-client-python/pull/202): Added an example how to use RxPY and sync batching
811

tests/test_BucketsApi.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,8 @@ def test_create_bucket_retention_list(self):
7171

7272
bucket_name = generate_bucket_name()
7373

74-
retention = BucketRetentionRules
7574
ret_list = []
76-
retention.every_seconds = 3600
75+
retention = BucketRetentionRules(every_seconds=3600)
7776
retention.type = "expire"
7877
ret_list.append(retention)
7978

0 commit comments

Comments
 (0)