diff options
author | Tom Ritter <tom@ritter.vg> | 2016-01-31 14:56:27 -0500 |
---|---|---|
committer | Tom Ritter <tom@ritter.vg> | 2016-01-31 14:56:27 -0500 |
commit | e7c15ef06e7886f69cee15863d7f75dc75c9ecec (patch) | |
tree | a0c8a89062e62d61db24c025e51e3dfe731c2660 /jobs/PeerChecker.py | |
parent | 618c3606a1f5f230124a937201e53589dbab1260 (diff) |
Get custom state names for each of the jobs now
Diffstat (limited to 'jobs/PeerChecker.py')
-rwxr-xr-x | jobs/PeerChecker.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/jobs/PeerChecker.py b/jobs/PeerChecker.py index 12ce8d8..d271419 100755 --- a/jobs/PeerChecker.py +++ b/jobs/PeerChecker.py @@ -13,6 +13,7 @@ import JobSpawner class PeerChecker(JobSpawner.JobSpawner):
class IndividualPeerChecker(JobBase.JobBase):
def __init__(self, config, checkurl, notificationAddress):
+ JobBase.JobBase.__init__(self, config, checkurl, notificationAddress)
self.checkurl = checkurl
self.notificationAddress = notificationAddress
|