3c00b93579
The existing order of operations after restarting the share is: 1. mount share on ins-1 2. validate the test file on ins-1 3. mount share on ins-2 4. clear the test file using 'rm' on ins-1 5. write the test file on ins-1 6. read the test file on ins-2 The issue is that step 4. can result in a stale file handle on ins-2 which takes an unspecified amount of time to clear. Mounting the share on ins-2 after the file is re-written does however work without a stale file handle. The new order is: 1. mount share on ins-1 2. validate the test file on ins-1 3. clear the test file using 'rm' on ins-1 4. write the test file on ins-1 5. mount share on ins-2 6. read the test file on ins-2 Closes-Bug: #1107