Skip to content

Commit

Permalink
Comment cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
madelson committed Dec 17, 2021
1 parent c57b82a commit 1fa98a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DistributedLock.FileSystem/FileDistributedLock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ public sealed partial class FileDistributedLock : IInternalDistributedLock<FileD
{
/// <summary>
/// Since <see cref="UnauthorizedAccessException"/> can be thrown EITHER transiently or for permissions issues, we retry up to this many times
/// before we assume that the issue is non-transient. Empirically I've found 50 to work fine so I doubled it just to be safe (if there IS a problem
/// there's little risk to trying more times because we'll eventually be failing hard).
/// before we assume that the issue is non-transient. Empirically I've found this value to be reliable both locally and on AppVeyor (if there
/// IS a problem there's little risk to trying more times because we'll eventually be failing hard).
/// </summary>
private const int MaxUnauthorizedAccessExceptionRetries = 400;

Expand Down

0 comments on commit 1fa98a2

Please sign in to comment.