Jake Vanderwerf
2026-03-29 9f672be1f7bb5f8462374ca4732d095d4f24685b
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
         )
      );
   }
}