Skip to content

Commit

Permalink
bump sisl/nuraft_mesg version to pick related change
Browse files Browse the repository at this point in the history
  • Loading branch information
yamingk committed Feb 13, 2024
1 parent ebde05c commit e9a322a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def build_requirements(self):
def requirements(self):
self.requires("iomgr/[~=11, include_prerelease=True]@oss/master")
self.requires("sisl/[~=11, include_prerelease=True]@oss/master")
self.requires("nuraft_mesg/[~=2, include_prerelease=True]@oss/main")
self.requires("nuraft_mesg/[~=3, include_prerelease=True]@oss/main")

self.requires("farmhash/cci.20190513@")
if self.settings.arch in ['x86', 'x86_64']:
Expand Down
2 changes: 2 additions & 0 deletions src/lib/device/physical_dev.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,8 @@ void PhysicalDev::load_chunks(std::function< bool(cshared< Chunk >&) >&& chunk_f
cinfo->checksum = info_crc;

auto chunk = std::make_shared< Chunk >(this, *cinfo, cslot);
m_chunk_data_area.insert(
ChunkInterval::right_open(cinfo->chunk_start_offset, cinfo->chunk_start_offset + cinfo->chunk_size));
if (chunk_found_cb(chunk)) { get_stream(chunk).m_chunks_map.insert(std::pair{cinfo->chunk_id, chunk}); }
}
hs_utils::iobuf_free(buf, sisl::buftag::superblk);
Expand Down

0 comments on commit e9a322a

Please sign in to comment.