Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
Fix build with liburing
Browse files Browse the repository at this point in the history
  • Loading branch information
MBkkt committed Sep 6, 2023
1 parent 956170d commit 49b1cb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/store/async_directory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -468,10 +468,10 @@ void AsyncIndexOutput::write_bytes(const byte_type* b, size_t length) {

AsyncDirectory::AsyncDirectory(std::filesystem::path dir,
directory_attributes attrs,
const ResourceManagementOptions& /*rm*/,
const ResourceManagementOptions& rm,
size_t pool_size, size_t queue_size,
unsigned flags)
: MMapDirectory{std::move(dir), std::move(attrs)},
: MMapDirectory{std::move(dir), std::move(attrs), rm},
async_pool_{pool_size},
queue_size_{queue_size},
flags_{flags} {}
Expand Down

0 comments on commit 49b1cb0

Please sign in to comment.