Convert OnInitialize stub to use standard IConfiguration for initialization
This commit is contained in:
parent
90cc4e7ca6
commit
41f52d0b87
@ -1,6 +1,7 @@
|
||||
using Connected.Annotations;
|
||||
using Connected.Caching.Net;
|
||||
using Microsoft.AspNetCore.Builder;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
|
||||
[assembly: MicroService(MicroServiceType.Sys)]
|
||||
@ -24,7 +25,7 @@ internal class CachingStartup : Startup
|
||||
services.AddScoped(typeof(ICacheContext), typeof(CacheContext));
|
||||
}
|
||||
|
||||
protected override async Task OnInitialize(Dictionary<string, string> args)
|
||||
protected override async Task OnInitialize(IConfiguration config)
|
||||
{
|
||||
if (Services is not null && Services.GetService<ICachingService>() is ICachingService service)
|
||||
await service.Initialize();
|
||||
|
Loading…
x
Reference in New Issue
Block a user