Fix DI bug in SignalRequestHandler
This commit is contained in:
parent
57f116c239
commit
75839a0ddb
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue