From 1a60ed85142bb3a263774deb594a2cf3809b2a7b Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Mon, 21 Oct 2013 15:36:31 +0200 Subject: [PATCH] just added threshold to get_job_info_dict --- linspector/core/interface.py | 1 + 1 file changed, 1 insertion(+) diff --git a/linspector/core/interface.py b/linspector/core/interface.py index 91cdbac..826979d 100644 --- a/linspector/core/interface.py +++ b/linspector/core/interface.py @@ -56,6 +56,7 @@ class LinspectorInterface(object): d["Next run"] = str(job.job.next_run_time) d["Runs"] = str(job.job.runs) d["Enabled"] = str(job._enabled) + d["Threshold"] = str(job.service.get_threshold()) d["Fails"] = str(job.jobThreshold) return d