Skip to content

Commit

Permalink
docs: updated CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar committed Mar 15, 2021
1 parent 4c8d6b8 commit 1faa708
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
### Features
1. [#203](https://github.com/influxdata/influxdb-client-python/pull/203): Allow configuring client via TOML file.

### API
1. [#209](https://github.com/influxdata/influxdb-client-python/pull/209): Allow setting shard-group durations for buckets via API

### Documentation
1. [#202](https://github.com/influxdata/influxdb-client-python/pull/202): Added an example how to use RxPY and sync batching

Expand Down
3 changes: 1 addition & 2 deletions tests/test_BucketsApi.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,8 @@ def test_create_bucket_retention_list(self):

bucket_name = generate_bucket_name()

retention = BucketRetentionRules
ret_list = []
retention.every_seconds = 3600
retention = BucketRetentionRules(every_seconds=3600)
retention.type = "expire"
ret_list.append(retention)

Expand Down

0 comments on commit 1faa708

Please sign in to comment.