From 74673432a242bdcdefbea0fdf489f336f3c48a5a Mon Sep 17 00:00:00 2001 From: uhi22 Date: Sun, 7 May 2023 22:28:15 +0200 Subject: [PATCH] fix: connectionManager use 10s instead of 5s for TCP and appl, to allow safe shutdown before restarting the communication. --- connMgr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/connMgr.py b/connMgr.py index 5e42bad..bd73bb1 100644 --- a/connMgr.py +++ b/connMgr.py @@ -120,10 +120,10 @@ class connMgr(): self.timerSDP = CONNMGR_TIMER_MAX def TcpOk(self): - self.timerTCP = CONNMGR_TIMER_MAX + self.timerTCP = CONNMGR_TIMER_MAX_10s def ApplOk(self): - self.timerAppl = CONNMGR_TIMER_MAX + self.timerAppl = CONNMGR_TIMER_MAX_10s def testCallbackAddToTrace(s):