Codebase list cinder-tempest-plugin / d68ce09
Remove sync call in md5 data integrity tests This is called in a section that will immediately unmount the FS as the next operation, which will sync that FS's data. Remove this to save an unneeded ssh call. Change-Id: I9d1317c31575eabd89c3cbc7f6b5459409a1854b Eric Harney 2 years ago
1 changed file(s) with 0 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
109109 (mount_path, filename))
110110 md5 = ssh_client.exec_command(
111111 'sudo md5sum -b %s/%s|cut -c 1-32' % (mount_path, filename))
112 ssh_client.exec_command('sudo sync')
113112 return md5
114113
115114 def get_md5_from_file(self, instance, instance_ip, filename,