Fix CommonStartup start method signature
This commit is contained in:
parent
7f68deae44
commit
f753603d80
@ -7,6 +7,7 @@ using Connected.Net.Endpoints;
|
||||
using Connected.Net.Server;
|
||||
using Connected.Security.Identity;
|
||||
using Connected.ServiceModel;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
|
||||
[assembly: MicroService(MicroServiceType.Service)]
|
||||
@ -21,8 +22,7 @@ internal class CommonStartup : Startup
|
||||
services.AddScoped(typeof(IIdentityService), typeof(IdentityService));
|
||||
services.AddTransient(typeof(IDocumentLocker<,>), typeof(DocumentLocker<,>));
|
||||
}
|
||||
|
||||
protected override async Task OnInitialize(Dictionary<string, string> args)
|
||||
protected override async Task OnInitialize(IConfiguration config)
|
||||
{
|
||||
if (Services is null || Services.GetService<IContextProvider>() is not IContextProvider provider)
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user