mirror of
https://github.com/home-assistant/core.git
synced 2025-07-09 22:37:11 +00:00
[0.34] bugfix influxdb node_id (#4712)
* Bugfix for #4709 - do not convert node_id to float * Update influxdb.py
This commit is contained in:
parent
64b1179c13
commit
2099d023ef
@ -120,7 +120,8 @@ def setup(hass, config):
|
||||
|
||||
for key, value in state.attributes.items():
|
||||
if key != 'unit_of_measurement':
|
||||
if isinstance(value, (str, float, bool)):
|
||||
if isinstance(value, (str, float, bool)) or \
|
||||
key.endswith('_id'):
|
||||
json_body[0]['fields'][key] = value
|
||||
elif isinstance(value, int):
|
||||
# Prevent column data errors in influxDB.
|
||||
|
Loading…
x
Reference in New Issue
Block a user