From 0ee36f0ae1759b67260304752afb1da6cfd96c3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=9B=BD=E4=BC=9F?= <366193849@qq.com> Date: Tue, 15 Jun 2021 17:34:49 +0800 Subject: [PATCH] fix bug --- FastGithub/GithubScanAllHostedService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FastGithub/GithubScanAllHostedService.cs b/FastGithub/GithubScanAllHostedService.cs index 7d8c30d..819e4d5 100644 --- a/FastGithub/GithubScanAllHostedService.cs +++ b/FastGithub/GithubScanAllHostedService.cs @@ -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); } } }