git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8378
91ce42f0-d328-0410-95d8-
f526ca767f89
}
################################################################
-# check if more than X jobs are running for too long (more than
-# 2 hours) since Y ago
+# check if more than X jobs are running or just created
+# for too long (more than 2 hours) since Y ago
$query = "
SELECT count(1) AS nb
FROM Job $c_filter $g_filter
- WHERE JobStatus = 'R'
- AND Type = 'B'
+ WHERE JobStatus IN ('R', 'C')
+ AND Type 'B'
AND JobTDate > $since
AND JobTDate < $trig
$where