Fix DI bug in SignalRequestHandler

This commit is contained in:
Sipke Schoorstra 2019-11-01 14:16:59 +01:00
parent 57f116c239
commit 75839a0ddb

View file

@ -23,14 +23,14 @@ namespace Elsa.Activities.Http.RequestHandlers.Handlers
private readonly CancellationToken cancellationToken;
public SignalRequestHandler(
HttpContext httpContext,
IHttpContextAccessor httpContextAccessor,
ITokenService tokenService,
IWorkflowInvoker workflowInvoker,
IWorkflowRegistry workflowRegistry,
IWorkflowFactory workflowFactory,
IWorkflowInstanceStore workflowInstanceStore)
{
this.httpContext = httpContext;
httpContext = httpContextAccessor.HttpContext;
this.tokenService = tokenService;
this.workflowInvoker = workflowInvoker;
this.workflowRegistry = workflowRegistry;