Update the parameters passed to the hook_QueueTaskError
authorAdedoyin Damilare <damilare182@gmail.com>
Mon, 13 Nov 2023 19:59:27 +0000 (19:59 +0000)
committerEileen McNaughton <emcnaughton@wikimedia.org>
Tue, 14 Nov 2023 01:02:28 +0000 (14:02 +1300)
Issue: https://lab.civicrm.org/dev/core/-/issues/4774

CRM/Utils/Hook.php

index 00e82f3602f75551e9662391e5570ac2cd4c2c21..c15b8715196af5b8afc152ff0a21fccd5baf6b40 100644 (file)
@@ -3116,7 +3116,7 @@ abstract class CRM_Utils_Hook {
    */
   public static function queueTaskError(CRM_Queue_Queue $queue, $item, &$outcome, ?Throwable $exception) {
     $null = NULL;
-    return self::singleton()->invoke(['job', 'params'], $queue, $item,
+    return self::singleton()->invoke(['queue', 'item', 'outcome', 'exception'], $queue, $item,
       $outcome, $exception, $null, $null,
       'civicrm_queueTaskError'
     );