Fix systematic warning in influxdb sensor (#7541)
parent
25cb7c652b
commit
ad15844cf4
|
@ -174,7 +174,7 @@ class InfluxSensorData(object):
|
|||
"to UNKNOWN: %s", self.query)
|
||||
self.value = None
|
||||
else:
|
||||
if points:
|
||||
if len(points) > 1:
|
||||
_LOGGER.warning("Query returned multiple points, only first "
|
||||
"one shown: %s", self.query)
|
||||
self.value = points[0].get('value')
|
||||
|
|
Loading…
Reference in New Issue