int err;
std::vector<ghobject_t> b_objects, a_objects;
- err = b_store->collection_list(coll, ghobject_t(), ghobject_t::get_max(), INT_MAX, &b_objects, NULL);
+ err = b_store->collection_list(coll, ghobject_t(), ghobject_t::get_max(),
+ true, INT_MAX, &b_objects, NULL);
if (err < 0) {
dout(0) << "diff_objects list on verify coll " << coll.to_str()
<< " returns " << err << dendl;
return true;
}
- err = a_store->collection_list(coll, ghobject_t(), ghobject_t::get_max(), INT_MAX, &a_objects, NULL);
+ err = a_store->collection_list(coll, ghobject_t(), ghobject_t::get_max(),
+ true, INT_MAX, &a_objects, NULL);
if (err < 0) {
dout(0) << "diff_objects list on store coll " << coll.to_str()
<< " returns " << err << dendl;
m_nr_runs.set(0);
entry->m_osr.flush();
vector<ghobject_t> ls;
- m_store->collection_list(entry->m_coll, ghobject_t(), ghobject_t::get_max(), INT_MAX, &ls, NULL);
+ m_store->collection_list(entry->m_coll, ghobject_t(), ghobject_t::get_max(),
+ true, INT_MAX, &ls, NULL);
dout(2) << __func__ << " coll " << entry->m_coll
<< " (" << ls.size() << " objects)" << dendl;