Skip to content

Commit

Permalink
Change watcher to a useful interval
Browse files Browse the repository at this point in the history
  • Loading branch information
glucaci committed Feb 25, 2021
1 parent c1975af commit 6973b2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/src/Core/Watcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ internal class Watcher<T>
private readonly ILogger<T> _logger;
private readonly string _instance;

private readonly TimeSpan _interval = TimeSpan.FromHours(60);
private readonly TimeSpan _interval = TimeSpan.FromHours(1);
private readonly Stopwatch _checkpointWatch;
private readonly Stopwatch _errorWatch;
private int _errorsPerInterval = 1;
Expand Down

0 comments on commit 6973b2d

Please sign in to comment.