From 74b4ce5fc2183f6655d2c006c0abacd842d0ca4c Mon Sep 17 00:00:00 2001 From: Simon Date: Sun, 28 Mar 2021 12:10:44 +0100 Subject: [PATCH] Always a 1 min timeout for Echo --- bridge_master.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bridge_master.py b/bridge_master.py index 277bbfb..892f28e 100755 --- a/bridge_master.py +++ b/bridge_master.py @@ -160,6 +160,9 @@ def make_bridges(_rules): #Make a single bridge - used for on-the-fly UA bridges def make_single_bridge(_tgid,_sourcesystem,_slot,_tmout): _tgid_s = str(int_id(_tgid)) + #Always a 1 min timeout for Echo + if _tgid_s = '9990': + _tmout = 1 BRIDGES[_tgid_s] = [] for _system in CONFIG['SYSTEMS']: if _system[0:3] != 'OBP':