This commit is contained in:
陈国伟 2021-06-15 17:34:49 +08:00
parent f713e9860c
commit 0ee36f0ae1

View File

@ -24,7 +24,7 @@ namespace FastGithub
while (stoppingToken.IsCancellationRequested == false)
{
await githubScanService.ScanAllAsync(stoppingToken);
await Task.Delay(this.options.CurrentValue.ScanResultInterval, stoppingToken);
await Task.Delay(this.options.CurrentValue.ScanAllInterval, stoppingToken);
}
}
}