[0.34] bugfix influxdb node_id (#4712)

* Bugfix for #4709 - do not convert node_id to float

* Update influxdb.py
pull/4369/merge
Lukas 2016-12-05 00:08:14 +01:00 committed by Paulus Schoutsen
parent 64b1179c13
commit 2099d023ef
1 changed files with 2 additions and 1 deletions

View File

@ -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.