mirror of
https://github.com/ShaYmez/HBmonitor.git
synced 2024-11-25 17:28:47 -05:00
timeout reduction by up to 3 minutes
This commit is contained in:
parent
c5b27805cf
commit
c64ef2e779
@ -183,7 +183,7 @@ def cleanTE():
|
||||
ts = CTABLE['MASTERS'][system]['PEERS'][peer][timeS]['TIMEOUT']
|
||||
td = ts - timeout if ts > timeout else timeout - ts
|
||||
td = int(round(abs((td)) / 60))
|
||||
if td > 4:
|
||||
if td > 3:
|
||||
CTABLE['MASTERS'][system]['PEERS'][peer][timeS]['TS'] = False
|
||||
CTABLE['MASTERS'][system]['PEERS'][peer][timeS]['COLOR'] = BLACK
|
||||
CTABLE['MASTERS'][system]['PEERS'][peer][timeS]['BGCOLOR'] = WHITE2
|
||||
@ -198,7 +198,7 @@ def cleanTE():
|
||||
ts = CTABLE['PEERS'][system][timeS]['TIMEOUT']
|
||||
td = ts - timeout if ts > timeout else timeout - ts
|
||||
td = int(round(abs((td)) / 60))
|
||||
if td > 4:
|
||||
if td > 3:
|
||||
CTABLE['PEERS'][system][timeS]['TS'] = False
|
||||
CTABLE['PEERS'][system][timeS]['COLOR'] = BLACK
|
||||
CTABLE['PEERS'][system][timeS]['BGCOLOR'] = WHITE2
|
||||
@ -212,7 +212,7 @@ def cleanTE():
|
||||
ts = CTABLE['OPENBRIDGES'][system]['STREAMS'][streamId][3]
|
||||
td = ts - timeout if ts > timeout else timeout - ts
|
||||
td = int(round(abs((td)) / 60))
|
||||
if td > 4:
|
||||
if td > 3:
|
||||
del CTABLE['OPENBRIDGES'][system]['STREAMS'][streamId]
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user