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 6
6
### Bug Fixes
7
7
1 . [ #206 ] ( https://github.com/influxdata/influxdb-client-python/pull/207 ) : Use default (system) certificates instead of Mozilla's root certificates (certifi.where())
8
8
9
+ ### API
10
+ 1 . [ #209 ] ( https://github.com/influxdata/influxdb-client-python/pull/209 ) : Allow setting shard-group durations for buckets via API
11
+
9
12
### Documentation
10
13
1 . [ #202 ] ( https://github.com/influxdata/influxdb-client-python/pull/202 ) : Added an example how to use RxPY and sync batching
11
14
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