diff options
| author | Per Larsson <[email protected]> | 2021-11-14 08:53:48 +0100 |
|---|---|---|
| committer | Per Larsson <[email protected]> | 2021-11-14 08:53:48 +0100 |
| commit | bfa621a2d3a3e45879728577b0dc3509bbb26ee3 (patch) | |
| tree | 9005376a27ccf428fd97ffffdbdc6e363124d413 /zenserver/cache/structuredcache.cpp | |
| parent | Parse chunk ID from chunk request. (diff) | |
| download | zen-bfa621a2d3a3e45879728577b0dc3509bbb26ee3.tar.xz zen-bfa621a2d3a3e45879728577b0dc3509bbb26ee3.zip | |
Fixed typo in object key.
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 79d370740..41a3e807b 100644 --- a/zenserver/cache/structuredcache.cpp +++ b/zenserver/cache/structuredcache.cpp @@ -1002,7 +1002,7 @@ HttpStructuredCacheService::HandleRpcGetCachePayloads(zen::HttpServerRequest& Re const CacheKey Key = CacheKey::Create(KeyObject["Bucket"sv].AsString(), KeyObject["Hash"sv].AsHash()); const IoHash ChunkId = RequestObject["ChunkId"sv].AsHash(); const Oid PayloadId = RequestObject["PayloadId"sv].AsObjectId(); - const uint64_t RawOffset = RequestObject["RawoffSet"sv].AsUInt64(); + const uint64_t RawOffset = RequestObject["RawOffset"sv].AsUInt64(); const uint64_t RawSize = RequestObject["RawSize"sv].AsUInt64(); const uint32_t ChunkPolicy = RequestObject["Policy"sv].AsUInt32(); |