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

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