From 8c6502de2f8ec2bd8382cd6945c327d7be400e14 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Wed, 28 Jan 2026 05:34:41 +0000
Subject: [PATCH] =Queue cleanup - seems to be working enough to get legacy before and after going!

---
 inc/integrations/GoogleMyBusiness.php |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/inc/integrations/GoogleMyBusiness.php b/inc/integrations/GoogleMyBusiness.php
index 6e823b2..2e97d01 100644
--- a/inc/integrations/GoogleMyBusiness.php
+++ b/inc/integrations/GoogleMyBusiness.php
@@ -2,7 +2,6 @@
 namespace JVBase\integrations;
 
 use JVBase\meta\MetaManager;
-use JVBase\managers\CacheManager;
 use WP_Error;
 if (!defined('ABSPATH')) {
 	exit;
@@ -130,7 +129,7 @@
 		);
 
 		if (JVB_TESTING) {
-			$this->cache->clear();
+			$this->cache->flush();
 		}
 	}
 
@@ -2276,7 +2275,7 @@
 	{
 		try {
 			// Use the static method to clear the entire cache group
-			$this->cache->clear();
+			$this->cache->flush();
 			return true;
 
 		} catch (\Exception $e) {

--
Gitblit v1.10.0