Skip to content

Commit

Permalink
Merge pull request #30156 from smithfarm/wip-41270-mimic
Browse files Browse the repository at this point in the history
mimic: rgw: Fix rgw decompression log-print

Reviewed-by: Casey Bodley <cbodley@redhat.com>
  • Loading branch information
yuriw committed Oct 8, 2019
2 parents ef0cda2 + 2da8de7 commit 6c22694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rgw/rgw_compression.cc
Expand Up @@ -102,7 +102,7 @@ int RGWGetObj_Decompress::handle_data(bufferlist& bl, off_t bl_ofs, off_t bl_len
in_bl.copy(ofs_in_bl, first_block->len, tmp);
int cr = compressor->decompress(tmp, out_bl);
if (cr < 0) {
lderr(cct) << "Compression failed with exit code " << cr << dendl;
lderr(cct) << "Decompression failed with exit code " << cr << dendl;
return cr;
}
++first_block;
Expand Down

0 comments on commit 6c22694

Please sign in to comment.