From ceaa191d8c3237732fe05c1965d4de4ee3a1835c Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 19 Jun 2017 18:20:19 +0000 Subject: [PATCH] Recurring had been executed only once - and then never again --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index cfb82f5381..b4f36eb84e 100644 --- a/boot.php +++ b/boot.php @@ -1090,7 +1090,7 @@ function proc_run($cmd) { array_shift($argv); $parameters = json_encode($argv); - $found = dba::select('workerqueue', array('id'), array('parameter' => $parameters), array('limit' => 1)); + $found = dba::select('workerqueue', array('id'), array('parameter' => $parameters, 'done' => false), array('limit' => 1)); if (!dbm::is_result($found)) { dba::insert('workerqueue', array('parameter' => $parameters, 'created' => $created, 'priority' => $priority));