We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to reproduce:
with InfluxDBClient(url=DB_URL, token=DB_TOKEN, org=DB_ORG, timeout=60000, debug=True) as client: query_api = client.query_api() tables = query_api.query("buckets()") assert len(tables) == 1, "This should return 1 table."
Expected behavior: With v1.30.0, I get a list with 1 FluxTable: [<FluxTable: 7 columns, 8 records>]
[<FluxTable: 7 columns, 8 records>]
Actual behavior: With v1.31.0, I always get an empty list. When using debug=False for InfluxDBClient, then I do get the list with 1 FluxTable.
Specifications:
The text was updated successfully, but these errors were encountered:
Hi @meeusen,
thanks for using our client.
The issue is caused by #462:
influxdb-client-python/influxdb_client/_sync/rest.py
Line 254 in 161e202
I will take a look and prepare fixed version ASAP.
Regards
Sorry, something went wrong.
debug
I have prepared a fixed version within #483. If you would like to use this fixed version before regular release, please install client via:
pip install git+https://github.com/influxdata/influxdb-client-python.git@exhausted_response
Successfully merging a pull request may close this issue.
Steps to reproduce:
Expected behavior:
With v1.30.0, I get a list with 1 FluxTable:
[<FluxTable: 7 columns, 8 records>]
Actual behavior:
With v1.31.0, I always get an empty list. When using debug=False for InfluxDBClient, then I do get the list with 1 FluxTable.
Specifications:
The text was updated successfully, but these errors were encountered: