diff options
Diffstat (limited to 'jobs')
-rwxr-xr-x | jobs/HTTPServerChecker.py | 2 | ||||
-rwxr-xr-x | jobs/TCPServerChecker.py | 2 | ||||
-rwxr-xr-x | jobs/TLSCertExpiration.py | 2 |
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 |