diff options
| author | zousar <[email protected]> | 2025-06-24 16:47:19 -0600 |
|---|---|---|
| committer | zousar <[email protected]> | 2025-06-24 16:47:19 -0600 |
| commit | 45793f40c44e60185b149e5030539c679e874990 (patch) | |
| tree | be3f38ed401b43a74407d6b752f23de699895e67 /src/zenstore/cache/cacherpc.cpp | |
| parent | Merge branch 'main' into zs/put-overwrite-policy (diff) | |
| download | zen-45793f40c44e60185b149e5030539c679e874990.tar.xz zen-45793f40c44e60185b149e5030539c679e874990.zip | |
xmake precommit
Diffstat (limited to 'src/zenstore/cache/cacherpc.cpp')
| -rw-r--r-- | src/zenstore/cache/cacherpc.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/zenstore/cache/cacherpc.cpp b/src/zenstore/cache/cacherpc.cpp index 436e8a083..5d9a68919 100644 --- a/src/zenstore/cache/cacherpc.cpp +++ b/src/zenstore/cache/cacherpc.cpp @@ -944,10 +944,10 @@ CacheRpcHandler::HandleRpcPutCacheValues(const CacheRequestContext& Context, con const bool HasUpstream = m_UpstreamCache.IsActive(); CbArrayView RequestsArray = Params["Requests"sv].AsArrayView(); - std::vector<ZenCacheStore::PutResult> BatchResults; - eastl::fixed_vector<size_t, 32> BatchResultIndexes; - eastl::fixed_vector<ZenCacheStore::PutResult, 32> Results; - eastl::fixed_vector<CacheKey, 32> UpstreamCacheKeys; + std::vector<ZenCacheStore::PutResult> BatchResults; + eastl::fixed_vector<size_t, 32> BatchResultIndexes; + eastl::fixed_vector<ZenCacheStore::PutResult, 32> Results; + eastl::fixed_vector<CacheKey, 32> UpstreamCacheKeys; uint64_t RequestCount = RequestsArray.Num(); { |