Merge branch 'bugfix/task-not-on-time'

This commit is contained in:
Jeroen De Meerleer 2018-09-21 13:05:00 +02:00
commit db32a8114d
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ if (file_exists("cache/get-services.trigger")) {
}
}
$stmt = $db->query('SELECT jobID, url, host, delay, nextrun, expected FROM jobs WHERE nextrun < ' . time());
$stmt = $db->query('SELECT jobID, url, host, delay, nextrun, expected FROM jobs WHERE nextrun <= ' . time());
$results = $stmt->fetchAll(PDO::FETCH_ASSOC);
$client = new \GuzzleHttp\Client();