Skip to content

Commit

Permalink
osd: Fix message output omap digest giving data digest values
Browse files Browse the repository at this point in the history
Signed-off-by: David Zafman <dzafman@redhat.com>
  • Loading branch information
dzafman committed Dec 1, 2015
1 parent c9ea680 commit 2f4d3ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/osd/PGBackend.cc
Expand Up @@ -655,8 +655,8 @@ void PGBackend::be_compare_scrubmaps(
auth_oi.omap_digest != auth_object.omap_digest) {
++deep_errors;
errorstream << pgid << " recorded omap digest 0x"
<< std::hex << auth_oi.data_digest << " != on disk 0x"
<< auth_object.digest << std::dec << " on " << auth_oi.soid
<< std::hex << auth_oi.omap_digest << " != on disk 0x"
<< auth_object.omap_digest << std::dec << " on " << auth_oi.soid
<< "\n";
if (repair)
update = FORCE;
Expand Down

0 comments on commit 2f4d3ed

Please sign in to comment.