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
We have deployed some IOT sensors and we are seeing some sensors not reporting values for periods of 15 min or more. I believe this is caused because there is no request_timeout used in the rest.py. In the debug logs of the program the last line is the post request being made and getting no response. This causes the influxdb client to stop writing points to the influxdb.
I thought the timeout parameter of the InfluxDBClient is setting the request timeout? If not, is it possible to set the request timeout? Because it is supported in the rest.py file (lines 159-165)
Steps to reproduce:
Minimal piece of code I run to reproduce.
We have deployed some IOT sensors and we are seeing some sensors not reporting values for periods of 15 min or more. I believe this is caused because there is no request_timeout used in the rest.py. In the debug logs of the program the last line is the post request being made and getting no response. This causes the influxdb client to stop writing points to the influxdb.
I thought the timeout parameter of the InfluxDBClient is setting the request timeout? If not, is it possible to set the request timeout? Because it is supported in the rest.py file (lines 159-165)
Steps to reproduce:
Minimal piece of code I run to reproduce.
Expected behavior:
I would expect it to raise an exception, restart the connection or resend the post request
Actual behavior:
Post request is made and continues waiting until the program is restarted.
Specifications:
The text was updated successfully, but these errors were encountered: