Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add retry to symlink test
  • Loading branch information
danmoseley committed Jul 29, 2022
commit 111bd03fb18a2d4d51b90e4dc63554981179fbb2
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,11 @@ public async Task UsePollingFileWatcher_UseActivePolling_HasChanged_SymbolicLink

// Act - Change link target to file 2.
File.Delete(linkPath);
File.CreateSymbolicLink(linkPath, file2Path);

RetryHelper.Execute(() =>
{
File.CreateSymbolicLink(linkPath, file2Path); // can fail, presumably due to some latency of delete of linkPath
}, maxAttempts: 10, retryWhen: e => e is UnauthorizedAccessException);

// Assert - It should report the change regardless of the timestamp being older.
Assert.True(await tcs.Task,
Expand Down