File tree 2 files changed +4
-2
lines changed 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 3
3
### Features
4
4
1 . [ #203 ] ( https://github.com/influxdata/influxdb-client-python/pull/203 ) : Allow configuring client via TOML file.
5
5
6
+ ### API
7
+ 1 . [ #209 ] ( https://github.com/influxdata/influxdb-client-python/pull/209 ) : Allow setting shard-group durations for buckets via API
8
+
6
9
### Documentation
7
10
1 . [ #202 ] ( https://github.com/influxdata/influxdb-client-python/pull/202 ) : Added an example how to use RxPY and sync batching
8
11
Original file line number Diff line number Diff line change @@ -71,9 +71,8 @@ def test_create_bucket_retention_list(self):
71
71
72
72
bucket_name = generate_bucket_name ()
73
73
74
- retention = BucketRetentionRules
75
74
ret_list = []
76
- retention . every_seconds = 3600
75
+ retention = BucketRetentionRules ( every_seconds = 3600 )
77
76
retention .type = "expire"
78
77
ret_list .append (retention )
79
78
You can’t perform that action at this time.
0 commit comments