You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Proposal:
I would like to configure the API url using a config-file, and still have the option to configure the retries parameter in the InfluxDBClient
Current behavior:
Calling InfluxDBClient.from_config_file, proxies into _BaseClient._from_config_file.
_BaseClient._from_config_file calls _BaseClient constructor without the retries-parameter set, and no other option to tunnel through kwargs.
Desired behavior:
Either allow retries to be configured in the config-file, or add an additional parameter to InfluxDBClient.from_config_file that allows this to be set.
Use case:
Client-side retries is always important for a stable system. Without this option, the from_config_file function is very hard to motivate and instead one has call the InfluxDBClient constructor and provide all parameters manually.
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Proposal:
I would like to configure the API url using a config-file, and still have the option to configure the
retries
parameter in theInfluxDBClient
Current behavior:
InfluxDBClient.from_config_file
, proxies into_BaseClient._from_config_file
._BaseClient._from_config_file
calls _BaseClient constructor without theretries
-parameter set, and no other option to tunnel through kwargs.influxdb-client-python/influxdb_client/client/_base.py
Lines 169 to 172 in ee24b3e
retries
is being read from kwargs, that was never passed in from the calls above:influxdb-client-python/influxdb_client/client/_base.py
Line 92 in ee24b3e
Desired behavior:
Either allow retries to be configured in the config-file, or add an additional parameter to
InfluxDBClient.from_config_file
that allows this to be set.Use case:
Client-side retries is always important for a stable system. Without this option, the from_config_file function is very hard to motivate and instead one has call the InfluxDBClient constructor and provide all parameters manually.
The text was updated successfully, but these errors were encountered: