mirror of
https://github.com/ceph/ceph
synced 2025-03-06 00:10:04 +00:00
radosgw_admin: skip log objects that start with obj_delete_at_hint
when testing radosgw-admin log show --object, don't use these objects Signed-off-by: Yehuda Sadeh <yehuda@redhat.com>
This commit is contained in:
parent
47b7fb4648
commit
d1ada2e8dd
@ -781,7 +781,7 @@ def task(ctx, config):
|
||||
|
||||
for obj in out:
|
||||
# TESTCASE 'log-show','log','show','after activity','returns expected info'
|
||||
if obj[:4] == 'meta' or obj[:4] == 'data':
|
||||
if obj[:4] == 'meta' or obj[:4] == 'data' or obj[:18] == 'obj_delete_at_hint':
|
||||
continue
|
||||
|
||||
(err, rgwlog) = rgwadmin(ctx, client, ['log', 'show', '--object', obj],
|
||||
|
Loading…
Reference in New Issue
Block a user