[0.34] bugfix influxdb node_id (#4712)
* Bugfix for #4709 - do not convert node_id to float * Update influxdb.pypull/4369/merge
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…
Reference in New Issue