Closed chrmel closed 1 year ago
@bednar is resolving this a matter of updating the API with the apigen?
@powersj Yes, I've prepared the following PR #588
Hi @chrmel,
I've prepared PR #588. If you would like to use the development version of the client, you can install it via:
pip install git+https://github.com/influxdata/influxdb-client-python.git@master
The stable version of the client will be available in our regular release cycle.
Regards
Hi @bednar,
thank you for the quick response and fix, it is much appreciated!
Regards
Specifications
Code sample to reproduce problem
Run 2 InflxuDB Instances
Create Replication
Expected behavior
Create replication with
maxAgeSeconds
set to provided parameter.Actual behavior
Fails becaus API parameter maxAgeSeconds (see API docs) is not reflected in
python-client
:This means the replication parameter
maxAgeSeconds
cannot be set via the python client, thus defaults to 604800 seconds which might not be wanted.Additional info
If there is a Python client it would be nice if it would also reflect the API. In my opinion the
maxAgeSeconds
parameter is kind of essential for a replication.