mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
Limit the amount of FileSystemWatchers being spawned
This commit is contained in:
parent
e9ef0136e4
commit
543e7fc369
1 changed files with 2 additions and 2 deletions
|
@ -44,8 +44,8 @@ namespace Ombi
|
|||
Console.WriteLine(env.ContentRootPath);
|
||||
var builder = new ConfigurationBuilder()
|
||||
.SetBasePath(env.ContentRootPath)
|
||||
.AddJsonFile("appsettings.json", false, true)
|
||||
.AddJsonFile($"appsettings.{env.EnvironmentName}.json", true)
|
||||
.AddJsonFile("appsettings.json", false, false)
|
||||
.AddJsonFile($"appsettings.{env.EnvironmentName}.json", false)
|
||||
.AddEnvironmentVariables();
|
||||
Configuration = builder.Build();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue