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
{{ message }}
This repository was archived by the owner on Oct 29, 2024. It is now read-only.
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?