mirror of
https://github.com/uhi22/pyPLC.git
synced 2024-11-10 01:05:42 +00:00
fix: connectionManager use 10s instead of 5s for TCP and appl, to allow safe shutdown before restarting the communication.
This commit is contained in:
parent
6231dc5468
commit
74673432a2
1 changed files with 2 additions and 2 deletions
|
@ -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):
|
||||||
|
|
Loading…
Reference in a new issue