Skip to content

Commit

Permalink
apps(tasks): fix after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
SonicGD committed Jan 12, 2024
1 parent 1c48387 commit 4d02a0d
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions apps/Blazor/MudBlazorUnited/Tasks/Demo/LoggingTaskExecutor.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
using Elastic.Apm.Api;
using Sitko.Core.Repository;
using Sitko.Core.Tasks.Execution;

namespace MudBlazorUnited.Tasks.Demo;

[TaskExecutor("Loggers", 10)]
public class LoggingTaskExecutor : BaseTaskExecutor<LoggingTask, LoggingTaskConfig, LoggingTaskResult>
{
public LoggingTaskExecutor(ILogger<LoggingTaskExecutor> logger, IServiceScopeFactory serviceScopeFactory,
IRepository<LoggingTask, Guid> repository, ITracer? tracer = null) : base(logger, serviceScopeFactory,
repository, tracer)
public LoggingTaskExecutor(ITaskExecutorContext<LoggingTask> executorContext, ILogger<LoggingTaskExecutor> logger) :
base(executorContext, logger)
{
}

Expand Down

0 comments on commit 4d02a0d

Please sign in to comment.