Skip to content

Commit 331181f

Browse files
small fix: log
1 parent ab4ccdb commit 331181f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/backend/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
static string? GetEnvVar(string key) => Environment.GetEnvironmentVariable(key);
2525

2626
var endpoint = GetEnvVar("AZURE_SIGNALR_ENDPOINT")
27-
?? throw new InvalidOperationException("Azure:SignalR:Endpoint is not configured");
27+
?? throw new InvalidOperationException("AZURE_SIGNALR_ENDPOINT is not configured");
2828
var clientId = GetEnvVar("AZURE_CLIENT_ID")
29-
?? throw new InvalidOperationException("Azure:SignalR:IdentityClientId is not configured");
29+
?? throw new InvalidOperationException("AZURE_CLIENT_ID is not configured");
3030

3131
options.Endpoints = new[]
3232
{

0 commit comments

Comments
 (0)