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.
"InfluxDBClientError: 400: unable to parse 'sapphire.devices.225 enable_channel_hopping=Falsei 1440436537172820992': invalid boolean"
Note the False is encoded with 'i', as if it were an integer.
In line_protocol.py line 62, _escape_value checks if value is an integer and then appends the i. Python's boolean type is a subclass of int, so _escape_value will incorrectly append the i.
This is on Python 2.7.6.
The text was updated successfully, but these errors were encountered:
Error looks like this:
"InfluxDBClientError: 400: unable to parse 'sapphire.devices.225 enable_channel_hopping=Falsei 1440436537172820992': invalid boolean"
Note the False is encoded with 'i', as if it were an integer.
In line_protocol.py line 62, _escape_value checks if value is an integer and then appends the i. Python's boolean type is a subclass of int, so _escape_value will incorrectly append the i.
This is on Python 2.7.6.
The text was updated successfully, but these errors were encountered: