2019-01-06 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in 'PyPAD.Receiver' that threw an exception when
	processing a PAD update with no active timer.
	* Added a 'pypad_spottrap.py' PyPAD script.
	* Removed the 'rlm_spottrap' RLM.
	* Removed the 'rlm_test' RLM.
This commit is contained in:
Fred Gleason
2019-01-06 10:00:13 -05:00
parent 5b240c0814
commit 1e3b1a6e0b
9 changed files with 208 additions and 613 deletions

View File

@@ -855,7 +855,8 @@ class Receiver(object):
self.__PyPAD_Process(Update(json.loads(msg),self.__config_parser))
msg=""
line=bytes()
timeout=(deadline-datetime.datetime.now()).total_seconds()
if self.__timer_interval!=None:
timeout=(deadline-datetime.datetime.now()).total_seconds()
def SigHandler(signo,stack):