change arguments for starting feeder

+ add relative path for servicemanager
This commit is contained in:
2025-05-20 10:12:34 +02:00
parent cae4332bb8
commit fa5866ee33
2 changed files with 10 additions and 12 deletions

View File

@ -291,7 +291,7 @@ class SEHistory(InfluxDBWrapper):
by_stream = {} # dict <stream> of [<ts>, <flag>, <instrument>, <device>]
for key, table in inperiod.items():
nextrow = nextrows.get(key)
if nextrow and not nextrow[1]:
if nextrow and not nextrow[0][1]:
table.extend(nextrow)
stream, instrument, device = [table.tags.get(k, '') for k in ('stream', 'instrument', 'device')]
elist = by_stream.setdefault(stream, [])