mirror of
https://github.com/ceph/ceph
synced 2025-01-03 01:22:53 +00:00
PG::replica_scrub: don't adjust pool on max object
Signed-off-by: Samuel Just <sjust@redhat.com>
This commit is contained in:
parent
42fad4b76d
commit
8b7b7c7a23
@ -3864,8 +3864,10 @@ void PG::replica_scrub(
|
||||
// compensate for hobject_t's with wrong pool from sloppy hammer OSDs
|
||||
hobject_t start = msg->start;
|
||||
hobject_t end = msg->end;
|
||||
start.pool = info.pgid.pool();
|
||||
end.pool = info.pgid.pool();
|
||||
if (!start.is_max())
|
||||
start.pool = info.pgid.pool();
|
||||
if (!end.is_max())
|
||||
end.pool = info.pgid.pool();
|
||||
|
||||
build_scrub_map_chunk(
|
||||
map, start, end, msg->deep, msg->seed,
|
||||
|
Loading…
Reference in New Issue
Block a user