From c6d7e2d6bc8f8814928382db9558c7df21af9c63 Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 31 Jan 2022 02:00:44 +0000 Subject: [PATCH] put max back to 10 --- hblink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hblink.py b/hblink.py index bc0ace5..76ed3c1 100755 --- a/hblink.py +++ b/hblink.py @@ -362,7 +362,7 @@ class OPENBRIDGE(DatagramProtocol): #Increment max hops _inthops = _hops +1 - if _inthops > 15: + if _inthops > 10: logger.warning('(%s) MAX HOPS exceed, dropping. Hops: %s, DST: %s', self._system, _inthops, _int_dst_id) self.send_bcsq(_dst_id,_stream_id) return