This repository was archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 524
JSONDecodeError in client.query()Β #567
Copy link
Copy link
Closed
Description
I am trying to perform a valid query to a remote influx database. It will fail for certain time frames.
query = "SELECT * FROM {} WHERE \
time > '{}' and time < '{}'".format(metric, str(start_date)[:10],
str(end_date)[:10])
raw_tweets = client.query(query, database=dbname)
Will fail with:
File "/usr/lib/python3.6/site-packages/influxdb/client.py", line 400, in query
data = response.json()
File "/usr/lib/python3.6/site-packages/requests/models.py", line 892, in json
return complexjson.loads(self.text, **kwargs)
File "/usr/lib/python3.6/json/__init__.py", line 354, in loads
return _default_decoder.decode(s)
File "/usr/lib/python3.6/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/usr/lib/python3.6/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
Why would be the response not be a valid JSON object?
cemanughian and captify-dieter
Metadata
Metadata
Assignees
Labels
No labels