summaryrefslogtreecommitdiff
path: root/jobs
diff options
context:
space:
mode:
authorTom Ritter <tom@ritter.vg>2017-02-01 14:17:31 -0600
committerTom Ritter <tom@ritter.vg>2017-02-01 14:17:31 -0600
commite25776aea113142769bdc95f1f56692eab78ac0e (patch)
treeb142e7e81debb6d984385802020bab4b9e393f7b /jobs
parenta68dd9de2e8499665f1bd6c6b9855dbe2fb30814 (diff)
Clarify the job inheritance info and make the state file simpler
Diffstat (limited to 'jobs')
-rwxr-xr-xjobs/HTTPServerChecker.py2
-rwxr-xr-xjobs/TCPServerChecker.py2
-rwxr-xr-xjobs/TLSCertExpiration.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/jobs/HTTPServerChecker.py b/jobs/HTTPServerChecker.py
index 8f0e88f..621e7b8 100755
--- a/jobs/HTTPServerChecker.py
+++ b/jobs/HTTPServerChecker.py
@@ -19,7 +19,7 @@ class HTTPServerChecker(JobSpawner.JobSpawner):
self.frequency = frequency
self.failureNotificationFrequency = failureNotificationFrequency
self.failuresBeforeNotification = failuresBeforeNotification
- super(HTTPServerChecker.ServerChecker, self).__init__(config, url, frequency, failureNotificationFrequency, failuresBeforeNotification)
+ super(HTTPServerChecker.ServerChecker, self).__init__(config, url)
def getName(self):
return str(self.__class__) + " for " + self.url
diff --git a/jobs/TCPServerChecker.py b/jobs/TCPServerChecker.py
index d02cb58..7daf7f5 100755
--- a/jobs/TCPServerChecker.py
+++ b/jobs/TCPServerChecker.py
@@ -21,7 +21,7 @@ class TCPServerChecker(JobSpawner.JobSpawner):
self.frequency = frequency
self.failureNotificationFrequency = failureNotificationFrequency
self.failuresBeforeNotification = failuresBeforeNotification
- super(TCPServerChecker.ServerChecker, self).__init__(config, ip, port, friendlyName, frequency, failureNotificationFrequency, failuresBeforeNotification)
+ super(TCPServerChecker.ServerChecker, self).__init__(config, ip, port)
def getName(self):
return str(self.__class__) + " for " + self.friendlyName
diff --git a/jobs/TLSCertExpiration.py b/jobs/TLSCertExpiration.py
index d5cfa48..e4b05b7 100755
--- a/jobs/TLSCertExpiration.py
+++ b/jobs/TLSCertExpiration.py
@@ -22,7 +22,7 @@ class TLSCertExpiration(JobSpawner.JobSpawner):
self.frequency = frequency
self.failureNotificationFrequency = failureNotificationFrequency
self.failuresBeforeNotification = failuresBeforeNotification
- super(TLSCertExpiration.CertChecker, self).__init__(config, url, frequency, failureNotificationFrequency, failuresBeforeNotification)
+ super(TLSCertExpiration.CertChecker, self).__init__(config, url)
def getName(self):
return str(self.__class__) + " for " + self.url