From ff2818016d1269383f4697e6b00985a6ada632b5 Mon Sep 17 00:00:00 2001 From: n0mjs710 Date: Thu, 29 Nov 2018 10:27:32 -0600 Subject: [PATCH] Lengthen OBP active queue length --- hb_confbridge.py | 2 +- hblink.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hb_confbridge.py b/hb_confbridge.py index 7d44631..73c142a 100755 --- a/hb_confbridge.py +++ b/hb_confbridge.py @@ -183,7 +183,7 @@ def stream_trimmer_loop(): _system = systems[system].STATUS[stream_id] _config = CONFIG['SYSTEMS'][system] if systems[system].STATUS[stream_id]['REMOVE'] == True: - logger.info('(%s) *REMOVE ENDED* STREAM ID: %s SUB: %s PEER: %s TGID: %s TS 1 Duration: %s', \ + logger.debug('(%s) *REMOVE ENDED* STREAM ID: %s SUB: %s PEER: %s TGID: %s TS 1 Duration: %s', \ system, int_id(stream_id), get_alias(int_id(_system['RFS']), subscriber_ids), get_alias(int_id(_config['NETWORK_ID']), peer_ids), get_alias(int_id(_system['TGID']), talkgroup_ids), _system['LAST'] - _system['START']) else: logger.info('(%s) *TIME OUT* STREAM ID: %s SUB: %s PEER: %s TGID: %s TS 1 Duration: %s', \ diff --git a/hblink.py b/hblink.py index 52cd6d8..33f25dc 100755 --- a/hblink.py +++ b/hblink.py @@ -118,7 +118,7 @@ class OPENBRIDGE(DatagramProtocol): self._system = _name self._report = _report self._config = self._CONFIG['SYSTEMS'][self._system] - self._laststrid = deque([], 10) + self._laststrid = deque([], 20) def dereg(self): logger.info('(%s) is mode OPENBRIDGE. No De-Registration required, continuing shutdown', self._system)