We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10402b6 commit b469cbbCopy full SHA for b469cbb
src/crimson/os/seastore/seastore.cc
@@ -725,12 +725,12 @@ SeaStore::Shard::list_objects(CollectionRef ch,
725
LOG_PREFIX(SeaStore::list_objects);
726
DEBUGT("got {} objects, left limit {}",
727
t, next_objects.size(), limit);
728
- if (last && std::get<1>(ret) == pend) {
729
- std::get<1>(ret) = end;
730
- }
731
assert(limit == 0 ||
732
std::get<1>(ret) == pend ||
733
std::get<1>(ret) == ghobject_t::get_max());
+ if (last && std::get<1>(ret) == pend) {
+ std::get<1>(ret) = end;
+ }
734
return list_iertr::make_ready_future<
735
seastar::stop_iteration
736
>(seastar::stop_iteration::no);
0 commit comments