diff options
| author | Matt Peters <[email protected]> | 2022-01-27 10:54:38 -0700 |
|---|---|---|
| committer | Matt Peters <[email protected]> | 2022-01-27 10:54:38 -0700 |
| commit | e9555383b29f9e617c876c31646edf40cb838c68 (patch) | |
| tree | e96a9f9efaf9da59c3b1ae83f139b71fc5ec68ea /zenserver/cache/structuredcache.cpp | |
| parent | Rename Paylod to Value to match the client side. Rename PayloadId to ValueCon... (diff) | |
| download | zen-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.cpp | 2 |
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; } |