fix: connectionManager use 10s instead of 5s for TCP and appl, to allow safe shutdown before restarting the communication.

This commit is contained in:
uhi22 2023-05-07 22:28:15 +02:00
parent 6231dc5468
commit 74673432a2

View file

@ -120,10 +120,10 @@ class connMgr():
self.timerSDP = CONNMGR_TIMER_MAX self.timerSDP = CONNMGR_TIMER_MAX
def TcpOk(self): def TcpOk(self):
self.timerTCP = CONNMGR_TIMER_MAX self.timerTCP = CONNMGR_TIMER_MAX_10s
def ApplOk(self): def ApplOk(self):
self.timerAppl = CONNMGR_TIMER_MAX self.timerAppl = CONNMGR_TIMER_MAX_10s
def testCallbackAddToTrace(s): def testCallbackAddToTrace(s):