We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab4ccdb commit 331181fCopy full SHA for 331181f
app/backend/Program.cs
@@ -24,9 +24,9 @@
24
static string? GetEnvVar(string key) => Environment.GetEnvironmentVariable(key);
25
26
var endpoint = GetEnvVar("AZURE_SIGNALR_ENDPOINT")
27
- ?? throw new InvalidOperationException("Azure:SignalR:Endpoint is not configured");
+ ?? throw new InvalidOperationException("AZURE_SIGNALR_ENDPOINT is not configured");
28
var clientId = GetEnvVar("AZURE_CLIENT_ID")
29
- ?? throw new InvalidOperationException("Azure:SignalR:IdentityClientId is not configured");
+ ?? throw new InvalidOperationException("AZURE_CLIENT_ID is not configured");
30
31
options.Endpoints = new[]
32
{
0 commit comments