Skip to content

Commit 6973b2d

Browse files
committed
Change watcher to a useful interval
1 parent c1975af commit 6973b2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Core/src/Core/Watcher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ internal class Watcher<T>
1313
private readonly ILogger<T> _logger;
1414
private readonly string _instance;
1515

16-
private readonly TimeSpan _interval = TimeSpan.FromHours(60);
16+
private readonly TimeSpan _interval = TimeSpan.FromHours(1);
1717
private readonly Stopwatch _checkpointWatch;
1818
private readonly Stopwatch _errorWatch;
1919
private int _errorsPerInterval = 1;

0 commit comments

Comments
 (0)