From 1ffff1aa60e8148ebfa76d17cb3b8d6c856457f3 Mon Sep 17 00:00:00 2001 From: "Khan Mohammad R." Date: Mon, 8 Apr 2024 13:25:52 +0200 Subject: [PATCH] Fixed the namespace for platform settings --- src/Storage/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Storage/Program.cs b/src/Storage/Program.cs index a81d264e..676a2ff8 100644 --- a/src/Storage/Program.cs +++ b/src/Storage/Program.cs @@ -196,7 +196,7 @@ void ConfigureServices(IServiceCollection services, IConfiguration config) services.Configure(config.GetSection("GeneralSettings")); services.Configure(config.GetSection("kvSetting")); services.Configure(config.GetSection("PepSettings")); - services.Configure(config.GetSection("PlatformSettings")); + services.Configure(config.GetSection("PlatformSettings")); services.Configure(config.GetSection("QueueStorageSettings")); services.Configure(config.GetSection("AccessTokenSettings")); services.Configure(config.GetSection("PostgreSqlSettings"));