Update src/Umbraco.Infrastructure/HostedServices/RecurringHostedServiceBase.cs

Co-authored-by: Paul Johnson <pmj@umbraco.com>
This commit is contained in:
Nikolaj Geisle
2022-03-22 14:18:12 +01:00
committed by GitHub
parent cca29bf723
commit fd701068ae

View File

@@ -23,7 +23,7 @@ namespace Umbraco.Cms.Infrastructure.HostedServices
/// </summary>
protected static readonly TimeSpan DefaultDelay = TimeSpan.FromMinutes(3);
private readonly ILogger<RecurringHostedServiceBase> _logger;
private readonly ILogger _logger;
private TimeSpan _period;
private readonly TimeSpan _delay;
private Timer _timer;