removeextra test

This commit is contained in:
Simon 2021-04-09 01:12:47 +01:00
parent cee96e1b96
commit 05f761e645
1 changed files with 14 additions and 0 deletions

View File

@ -1266,6 +1266,20 @@ class routerOBP(OPENBRIDGE):
return
# Loop Control
for system in systems:
if system == self._system:
continue
_count = 0
_removeextra1 = []
if CONFIG['SYSTEMS'][system]['MODE'] == 'OPENBRIDGE':
if _stream_id in systems[system].STATUS and '1ST' in systems[system].STATUS[_stream_id]:
_count = _count + 1
if _count > 0:
logger.warning('Extra')
_removeextra1.append(system)
for remove in removeextra1:
del systems[remove].STATUS[_stream_id]['1ST']
for system in systems:
if system == self._system: