Jake Vanderwerf
2026-02-17 a24a06002081ad71a78ffeff9072725ba39cf121
inc/managers/queue/Locker.php
@@ -42,12 +42,17 @@
      try {
         $callback();
      } finally {
         $this->wpdb->get_var(
            $this->wpdb->prepare(
               'SELECT RELEASE_LOCK(%s)',
               $this->lockKey
            )
         );
         $this->unlock();
      }
   }
   public function unlock():void
   {
      $this->wpdb->get_var(
         $this->wpdb->prepare(
            'SELECT RELEASE_LOCK(%s)',
            $this->lockKey
         )
      );
   }
}