From 8fd135a28e76a5cbe17392e1ecfbc730db1d9eb7 Mon Sep 17 00:00:00 2001 From: Chris Miles Date: Mon, 16 Jun 2025 17:02:05 -0500 Subject: [PATCH] Rebase fixes --- zone/cli/tests/databuckets.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zone/cli/tests/databuckets.cpp b/zone/cli/tests/databuckets.cpp index 2f9539f52..ad1c4ca74 100644 --- a/zone/cli/tests/databuckets.cpp +++ b/zone/cli/tests/databuckets.cpp @@ -322,7 +322,7 @@ void ZoneCLI::TestDataBuckets(int argc, char** argv, argh::parser& cmd, std::str RunTest("Cold Cache Scoped Key Returns Empty (Due to Skip DB)", "", cold_value); // ✅ Reload cache - DataBucket::GetDataBuckets(client); + client->LoadDataBucketsCache(); // Cache should now return the value std::string hot_value = client->GetBucket(scoped_key); @@ -334,7 +334,7 @@ void ZoneCLI::TestDataBuckets(int argc, char** argv, argh::parser& cmd, std::str // Clear cache, then preload DataBucket::ClearCache(); - DataBucket::GetDataBuckets(client); + client->LoadDataBucketsCache(); std::string nested_value = client->GetBucket("ac_nested.test"); RunTest("Post-BulkLoad Nested Scoped Key Returns Value", "nested_val", nested_value);