aboutsummaryrefslogtreecommitdiff
path: root/zenserver/cache/structuredcache.cpp
diff options
context:
space:
mode:
authorMatt Peters <[email protected]>2022-01-27 10:54:38 -0700
committerMatt Peters <[email protected]>2022-01-27 10:54:38 -0700
commite9555383b29f9e617c876c31646edf40cb838c68 (patch)
treee96a9f9efaf9da59c3b1ae83f139b71fc5ec68ea /zenserver/cache/structuredcache.cpp
parentRename Paylod to Value to match the client side. Rename PayloadId to ValueCon... (diff)
downloadzen-e9555383b29f9e617c876c31646edf40cb838c68.tar.xz
zen-e9555383b29f9e617c876c31646edf40cb838c68.zip
Rename Paylod to Value to match the client side: missing file from previous commit.
Diffstat (limited to 'zenserver/cache/structuredcache.cpp')
-rw-r--r--zenserver/cache/structuredcache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zenserver/cache/structuredcache.cpp b/zenserver/cache/structuredcache.cpp
index c2cd679b1..99ac6cb0c 100644
--- a/zenserver/cache/structuredcache.cpp
+++ b/zenserver/cache/structuredcache.cpp
@@ -977,7 +977,7 @@ HttpStructuredCacheService::PutCacheRecord(PutRequestData& Request, const CbPack
if (EnumHasAllFlags(Request.Policy.GetRecordPolicy(), CachePolicy::StoreRemote) && !IsPartialRecord)
{
m_UpstreamCache.EnqueueUpstream(
- {.Type = ZenContentType::kCbPackage, .Key = Request.Key, .PayloadIds = std::move(ValidAttachments)});
+ {.Type = ZenContentType::kCbPackage, .Key = Request.Key, .ValueContentIds = std::move(ValidAttachments)});
}
return PutResult::Success;
}