Skip to content

Commit

Permalink
typo in log
Browse files Browse the repository at this point in the history
  • Loading branch information
bigtallcampbell committed Aug 2, 2024
1 parent 05a4692 commit 8c6836c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public class Program {
public static void Main(string[] args) {
var builder = WebApplication.CreateBuilder(args);

string _secretDir = Environment.GetEnvironmentVariable("SPACEFX_SECRET_DIR") ?? throw new Exception("SPACEFX_CONFIG_DIR environment variable not set");
string _secretDir = Environment.GetEnvironmentVariable("SPACEFX_SECRET_DIR") ?? throw new Exception("SPACEFX_SECRET_DIR environment variable not set");
// Load the configuration being supplicated by the cluster first
builder.Configuration.AddJsonFile(Path.Combine($"{_secretDir}", "config", "appsettings.json"), optional: false, reloadOnChange: false);

Expand Down

0 comments on commit 8c6836c

Please sign in to comment.