Use operations kind

This commit is contained in:
2025-11-17 15:43:58 +09:00
parent a4055bee7e
commit 88f4d8ba2d
4 changed files with 25 additions and 11 deletions

View File

@ -22,7 +22,7 @@ namespace Hcs.WebApp.BackgroundServices
using var scope = scopeFactory.CreateScope();
var headquartersService = scope.ServiceProvider.GetRequiredService<HeadquartersService>();
var operations = await headquartersService.GetResultWaitingOperationsAsync();
var operations = await headquartersService.GetNotCompletedParseOperationsAsync();
foreach (var operation in operations)
{
state.EnqueueOperation(operation);