Skip to content

Commit c803062

Browse files
committed
docs: updated CHANGELOG.md
1 parent 207b4b0 commit c803062

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
@@ -6,6 +6,9 @@
66
### Bug Fixes
77
1. [#206](https://github.com/influxdata/influxdb-client-python/pull/207): Use default (system) certificates instead of Mozilla's root certificates (certifi.where())
88

9+
### API
10+
1. [#209](https://github.com/influxdata/influxdb-client-python/pull/209): Allow setting shard-group durations for buckets via API
11+
912
### Documentation
1013
1. [#202](https://github.com/influxdata/influxdb-client-python/pull/202): Added an example how to use RxPY and sync batching
1114

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)