Skip to content

Commit

Permalink
Merge pull request red-hat-storage#3777 from sumabai/7.1_pr
Browse files Browse the repository at this point in the history
Remove snap-sched multi-fs test as BZ is not fixed for 5.3
  • Loading branch information
mergify[bot] authored Jun 12, 2024
2 parents 8fa2073 + a314bab commit a5fe280
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
9 changes: 1 addition & 8 deletions suites/pacific/cephfs/tier-2_cephfs_test-snapshot-clone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -238,11 +238,4 @@ tests:
abort-on-fail: false
config:
test_name : functional
- test:
name: snap_sched_multi_fs
module: snapshot_clone.snap_schedule_retention_vol_subvol.py
polarion-id: CEPH-83581235
desc: snap schedule and retention functional test on multi-fs setup
abort-on-fail: false
config:
test_name : systemic

Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ def run(ceph_cluster, **kw):
sudo=True,
cmd="ceph config set client log_to_file true",
)
log.info("Set client config client inject fixed oldest tid to true")
log.info("Set client config client_inject_fixed_oldest_tid to true")
out, rc = client1.exec_command(
sudo=True,
cmd='ceph config set client "client inject fixed oldest tid" true',
cmd='ceph config set client "client_inject_fixed_oldest_tid" true',
)
out, rc = client1.exec_command(
sudo=True,
cmd='ceph config get client "client inject fixed oldest tid"',
cmd='ceph config get client "client_inject_fixed_oldest_tid"',
)
log.info(out)
if "true" not in out.strip():
Expand Down Expand Up @@ -217,7 +217,7 @@ def run(ceph_cluster, **kw):
)
client1.exec_command(
sudo=True,
cmd='ceph config set client "client inject fixed oldest tid" false',
cmd='ceph config set client "client_inject_fixed_oldest_tid" false',
)
mds_session_metadata_threshold_default = out.strip()
client1.exec_command(sudo=True, cmd=f"umount {fuse_mount_dir}", check_ec=False)
Expand Down

0 comments on commit a5fe280

Please sign in to comment.