mirror of
https://github.com/ceph/ceph
synced 2025-02-19 08:57:27 +00:00
Merge pull request #35125 from tchaikov/wip-cephadm-test
qa/tasks/cephadm: ignore tarfile.ReadError Reviewed-by: Sebastian Wagner <sebastian.wagner@suse.com>
This commit is contained in:
commit
65c159497f
@ -250,8 +250,11 @@ def ceph_log(ctx, config):
|
||||
os.makedirs(sub)
|
||||
except OSError:
|
||||
pass
|
||||
teuthology.pull_directory(remote, '/var/log/ceph', # everything
|
||||
os.path.join(sub, 'log'))
|
||||
try:
|
||||
teuthology.pull_directory(remote, '/var/log/ceph', # everything
|
||||
os.path.join(sub, 'log'))
|
||||
except ReadError:
|
||||
pass
|
||||
|
||||
@contextlib.contextmanager
|
||||
def ceph_crash(ctx, config):
|
||||
|
Loading…
Reference in New Issue
Block a user