Skip to content

Commit

Permalink
Merge pull request #8475: hammer: Multipart ListPartsResult has missi…
Browse files Browse the repository at this point in the history
…ng quotes on ETag

Reviewed-by: Nathan Cutler <ncutler@suse.com>
  • Loading branch information
smithfarm committed Jun 1, 2016
2 parents 0a18760 + 2c97cb3 commit eed6217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rgw/rgw_rest_s3.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1808,7 +1808,7 @@ void RGWListMultipart_ObjStore_S3::send_response()
}

s->formatter->dump_unsigned("PartNumber", info.num);
s->formatter->dump_string("ETag", info.etag);
s->formatter->dump_format("ETag", "\"%s\"", info.etag.c_str());
s->formatter->dump_unsigned("Size", info.size);
s->formatter->close_section();
}
Expand Down

0 comments on commit eed6217

Please sign in to comment.