Jake Vanderwerf
2026-02-10 c348d35c7ecb6c74f71cf90b982412f267c5d807
inc/managers/queue/Queue.php
@@ -11,6 +11,7 @@
   private Storage $storage;
   private Processor $processor;
   private TypeRegistry $registry;
   public Executor $executor;
   private Locker $locker;
   public function __construct()
@@ -19,8 +20,8 @@
      $this->registry = new TypeRegistry();
      $this->locker = new Locker();
      $executor = new FilteredExecutor();
      $this->processor = new Processor($this->storage, $executor, $this->registry);
      $this->executor = new FilteredExecutor();
      $this->processor = new Processor($this->storage, $this->executor, $this->registry);
      add_action('jvb_process_queue', [$this, 'checkQueue']);
      add_action('jvb_queue_maintenance', [$this, 'maintenance']);