From d1c9573ef4b54e03b66a9507a57104591078d35b Mon Sep 17 00:00:00 2001 From: Dan Engelbrecht Date: Thu, 5 Dec 2024 14:21:12 +0100 Subject: projectstore getchunks rpc with modtag (#244) Feature: Project store "getchunks" rpc call /prj/{project}/oplog/{log}/rpc extended to accept both CAS (RawHash) and Id (Oid) identifiers as well as partial ranges --- src/zenserver/vfs/vfsimpl.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/zenserver/vfs/vfsimpl.cpp') diff --git a/src/zenserver/vfs/vfsimpl.cpp b/src/zenserver/vfs/vfsimpl.cpp index 6e14b7632..2bac6b756 100644 --- a/src/zenserver/vfs/vfsimpl.cpp +++ b/src/zenserver/vfs/vfsimpl.cpp @@ -47,7 +47,8 @@ VfsOplogDataSource::ReadChunkData(const Oid& ChunkId, void* Buffer, uint64_t Byt ~0ull, ZenContentType::kCompressedBinary, /* out */ ChunkBuffer, - /* out */ ContentType); + /* out */ ContentType, + /* OptionalInOutModificationTag */ nullptr); if (Result.first == HttpResponseCode::OK) { -- cgit v1.2.3