Merge pull request #27781 from theanalyst/rgw-admin-delete-at

rgw: admin: handle delete_at attr in object stat output

Reviewed-By: Casey Bodley <cbodley@redhat.com>
This commit is contained in:
Abhishek L 2019-04-25 19:40:47 +02:00 committed by GitHub
commit b0ecd0a3b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6435,6 +6435,8 @@ next:
handled = dump_string("etag", bl, formatter);
} else if (iter->first == RGW_ATTR_COMPRESSION) {
handled = decode_dump<RGWCompressionInfo>("compression", bl, formatter);
} else if (iter->first == RGW_ATTR_DELETE_AT) {
handled = decode_dump<utime_t>("delete_at", bl, formatter);
}
if (!handled)