From e25776aea113142769bdc95f1f56692eab78ac0e Mon Sep 17 00:00:00 2001 From: Tom Ritter Date: Wed, 1 Feb 2017 14:17:31 -0600 Subject: Clarify the job inheritance info and make the state file simpler --- jobs/HTTPServerChecker.py | 2 +- jobs/TCPServerChecker.py | 2 +- jobs/TLSCertExpiration.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'jobs') 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 -- cgit v1.2.3