cancel timers when not in use

This commit is contained in:
Cort Buffington 2017-03-24 08:44:00 -05:00
parent ed06b92ef7
commit 9d379bf3c4
1 changed files with 8 additions and 0 deletions

View File

@ -338,6 +338,10 @@ class confbridgeIPSC(IPSC):
if _system['ACTIVE'] == True and _system['TO_TYPE'] == 'ON':
_system['TIMER'] = now + _system['TIMEOUT']
self._logger.info('(%s) Bridge: %s, timeout timer reset to: %s', self._system, _bridge, _system['TIMER'] - now)
# Cancel the timer if we've enabled an "OFF" type timeout
if _system['ACTIVE'] == True and _system['TO_TYPE'] == 'OFF':
_system['TIMER'] = now
self._logger.info('(%s) Bridge: %s set to "OFF" with an on timer rule: timeout timer cancelled', self._system, _bridge)
# TGID matches an DE-ACTIVATION trigger
if _dst_group in _system['OFF']:
@ -349,6 +353,10 @@ class confbridgeIPSC(IPSC):
if _system['ACTIVE'] == False and _system['TO_TYPE'] == 'OFF':
_system['TIMER'] = now + _system['TIMEOUT']
self._logger.info('(%s) Bridge: %s, timeout timer reset to: %s', self._system, _bridge, _system['TIMER'] - now)
# Cancel the timer if we've enabled an "ON" type timeout
if _system['ACTIVE'] == True and _system['TO_TYPE'] == 'ON':
_system['TIMER'] = now
self._logger.info('(%s) Bridge: %s set to ON with and "OFF" timer rule: timeout timer cancelled', self._system, _bridge)
#
# END IN-BAND SIGNALLING