Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
JPewterschmidt committed Jul 10, 2024
2 parents 6e114c6 + 2c6c72a commit 4407331
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion include/frenzykv/options.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ struct adl_serializer<frenzykv::options>
j.at("max_block_segments_number").get_to(opt.max_block_segments_number);
if (opt.max_block_segments_number > ::std::numeric_limits<uint16_t>::max())
{
spdlog::debug("TODO: the max_block_segments_number exceeds the limits. Something bad happenning.");
spdlog::debug("The `max_block_segments_number` exceeds the limits. Terminating.");
::exit(1);
}
j.at("sync_write").get_to(opt.sync_write);
j.at("buffered_read").get_to(opt.buffered_read);
Expand Down
2 changes: 1 addition & 1 deletion test/bloom.cc
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ TEST_F(bloom_test, small_filter)
add("Google");
build();
ASSERT_TRUE(matches("Thanks"));
ASSERT_TRUE(matches("You"));
ASSERT_TRUE(matches("Google"));
ASSERT_TRUE(!matches("Hello"));
ASSERT_TRUE(!matches("World"));
}
Expand Down
2 changes: 1 addition & 1 deletion util/file_center.cc
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ koios::task<file_guard> file_center::get_file(const ::std::string& name)
)
);
auto insert_ret = m_name_rep.insert({ name, sp.get() });
toolpex_assert(insert_ret.second); // TODO May triggered
toolpex_assert(insert_ret.second); // May triggered
co_return *((*(insert_ret.first)).second);
}

Expand Down

0 comments on commit 4407331

Please sign in to comment.