Skip to content

Commit

Permalink
rgw: admin: handle delete_at attr in object stat output
Browse files Browse the repository at this point in the history
Fixes: https://tracker.ceph.com/issues/39481

Signed-off-by: Abhishek Lekshmanan <abhishek@suse.com>
  • Loading branch information
theanalyst committed Apr 25, 2019
1 parent 4c79d02 commit 90999a4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/rgw/rgw_admin.cc
Expand Up @@ -6432,6 +6432,8 @@ int main(int argc, const char **argv)
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)
Expand Down

0 comments on commit 90999a4

Please sign in to comment.