Fixes: https://tracker.ceph.com/issues/63717
Signed-off-by: Casey Bodley <cbodley@redhat.com>
const string& prefix,
RGWSI_SysObj::Pool::ListCtx *_ctx)
{
- _ctx->impl.emplace<PoolListImplInfo>(prefix);
+ _ctx->impl.emplace<PoolListImplInfo>(prefix, marker);
auto& ctx = static_cast<PoolListImplInfo&>(*_ctx->impl);
rgw::AccessListFilter filter;
std::string marker;
- RGWSI_SysObj_Core_PoolListImplInfo(const std::string& prefix)
- : filter(rgw::AccessListFilterPrefix(prefix)) {}
+ RGWSI_SysObj_Core_PoolListImplInfo(const std::string& prefix,
+ const std::string& marker)
+ : filter(rgw::AccessListFilterPrefix(prefix)), marker(marker) {}
};