Revert "Back off logging for dedup code"

This reverts commit 4a2bdaf80f453d344ce9aa5a99e31f61fbe912ce.
This commit is contained in:
Simon 2020-12-20 21:48:48 +00:00
parent 4a2bdaf80f
commit 32c25e306c

View File

@ -787,7 +787,6 @@ class routerOBP(OPENBRIDGE):
_target_status = systems[_target['SYSTEM']].STATUS _target_status = systems[_target['SYSTEM']].STATUS
_target_system = self._CONFIG['SYSTEMS'][_target['SYSTEM']] _target_system = self._CONFIG['SYSTEMS'][_target['SYSTEM']]
if (_target['SYSTEM'],_target['TS']) in _sysIgnore: if (_target['SYSTEM'],_target['TS']) in _sysIgnore:
if (_stream_id not in _target_status):
logger.debug("(DEDUP) OBP Source Skipping system %s TS: %s",_target['SYSTEM'],_target['TS']) logger.debug("(DEDUP) OBP Source Skipping system %s TS: %s",_target['SYSTEM'],_target['TS'])
continue continue
if _target_system['MODE'] == 'OPENBRIDGE': if _target_system['MODE'] == 'OPENBRIDGE':
@ -1058,8 +1057,8 @@ class routerHBP(HBSYSTEM):
if _target['ACTIVE']: if _target['ACTIVE']:
_target_status = systems[_target['SYSTEM']].STATUS _target_status = systems[_target['SYSTEM']].STATUS
_target_system = self._CONFIG['SYSTEMS'][_target['SYSTEM']] _target_system = self._CONFIG['SYSTEMS'][_target['SYSTEM']]
if (_target['SYSTEM'],_target['TS']) in _sysIgnore: if (_target['SYSTEM'],_target['TS']) in _sysIgnore:
if (_stream_id not in _target_status):
logger.debug("(DEDUP) HBP Source - Skipping system %s TS: %s",_target['SYSTEM'],_target['TS']) logger.debug("(DEDUP) HBP Source - Skipping system %s TS: %s",_target['SYSTEM'],_target['TS'])
continue continue
if _target_system['MODE'] == 'OPENBRIDGE': if _target_system['MODE'] == 'OPENBRIDGE':