diff options
| author | Dan Engelbrecht <[email protected]> | 2024-08-12 19:35:18 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2024-08-12 19:35:18 +0200 |
| commit | a812b426c3047c490a5da92cd8c3c46bf65b69c1 (patch) | |
| tree | fef13131f55f5d0e215a17a8340e56bee8fbee52 /src/zenserver/vfs/vfsimpl.cpp | |
| parent | Skip chunk in block stores when iterating a block if the location is out of r... (diff) | |
| download | zen-a812b426c3047c490a5da92cd8c3c46bf65b69c1.tar.xz zen-a812b426c3047c490a5da92cd8c3c46bf65b69c1.zip | |
add compacting of oplogs as part of GC (#106)
* add compacting of oplogs as part of GC
* force retain of LSN unless we have less than 16 miln entries left
Diffstat (limited to 'src/zenserver/vfs/vfsimpl.cpp')
| -rw-r--r-- | src/zenserver/vfs/vfsimpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenserver/vfs/vfsimpl.cpp b/src/zenserver/vfs/vfsimpl.cpp index 5c9f32c69..292fce9eb 100644 --- a/src/zenserver/vfs/vfsimpl.cpp +++ b/src/zenserver/vfs/vfsimpl.cpp @@ -362,7 +362,7 @@ VfsServiceDataSource::PopulateDirectory(std::string NodePath, VfsTreeNode& DirNo // Oplog contents enumeration - if (ProjectStore::Oplog* Oplog = Project->OpenOplog(OplogId)) + if (ProjectStore::Oplog* Oplog = Project->OpenOplog(OplogId, false)) { Ref<VfsOplogDataSource> DataSource = GetOplogDataSource(ProjectId, OplogId); |