diff --git a/lib/core/job.py b/lib/core/job.py index f159c88..4b88c1b 100644 --- a/lib/core/job.py +++ b/lib/core/job.py @@ -45,6 +45,7 @@ class Job: def handle_alarm(self, jobInfo, thresholdOffset): for member in self.service.get_hostgroup().get_members(): + #TODO: Put Tasks in a run queue and execute them in a background thread. FIFO! Reduces delay in core. for task in member.get_tasks(): task.execute(jobInfo.get_message(), self.core)