From acc1c18144644ddd85d3dc6e407d4ac8d98d4a43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dezs=C5=91=20BICZ=C3=93?= Date: Thu, 23 Mar 2023 05:28:36 +0000 Subject: [PATCH] Make sure that cron runner starts executing the job (#814) --- apigee_edge.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apigee_edge.module b/apigee_edge.module index ad7c9b82..1b3d4c2f 100644 --- a/apigee_edge.module +++ b/apigee_edge.module @@ -1588,7 +1588,7 @@ function apigee_edge_cron() { // The reason of this is to avoid race conditions. for ($i = 0; $i < 100; $i++) { if (($job = $executor->select())) { - $executor->cast($job); + $executor->call($job); } else { break;