Skip to content
Snippets Groups Projects
Commit 739058d1 authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Fix infinite recursion loop

Relates to #20
parent a5ed4d11
Branches
No related tags found
No related merge requests found
......@@ -177,13 +177,12 @@ namespace ATxCommon
if (expired.Count > 0)
_expiredDirs.Add(userdir.Name, expired);
}
_lastUpdateGraceLocation = DateTime.Now;
if (ExpiredDirsCount > 0) {
if (_expiredDirs.Count > 0) {
Log.Debug("Updated storage status: {0} expired directories in grace location.",
ExpiredDirsCount);
_expiredDirs.Count);
}
_lastUpdateGraceLocation = DateTime.Now;
}
/// <summary>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment