Unverified Commit 4ab2e529 authored by Andrew's avatar Andrew Committed by GitHub
Browse files

NAS-112377 / 12.0 / Force zpool sync to ensure ZFS_PROP_WRITTEN accuracy (#7542)

Samba server will check ZFS_PROP_WRITTEN on snapshots to determine
whether to present them the VSS clients.
Showing with 1 addition and 1 deletion
+1 -1
......@@ -158,7 +158,7 @@ def test_003_creating_a_smb_share_path(request):
assert results.status_code == 200, results.text
smb_id = results.json()['id']
cmd = f'mkdir {smb_path}/{SMB_USER}'
cmd = f'mkdir {smb_path}/{SMB_USER}; zpool sync'
results = SSH_TEST(cmd, user, password, ip)
assert results['result'] is True, {"cmd": cmd, "res": results['output']}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment