You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting an error on the negotiate endpoint related to the connection.
The actual error is Connection string missing required properties endpoint. (Parameter 'connectionString')
I am using BidirectionalChat example and using isolated process. My code works locally, but not when deployed to function app.
[Function("negotiate")] public async Task<SignalRConnectionInfo> Negotiate([HttpTrigger(AuthorizationLevel.Anonymous, "get")] HttpRequestData req, [SignalRConnectionInfoInput(HubName = "Events", UserId = "{query.personId}", ConnectionStringSetting = "xxxx_SignalRConnection")] SignalRConnectionInfo signalRConnectionInfo) { _logger.LogInformation("Executing Negotiate for SignalR."); return signalRConnectionInfo; }
I have added xxxx_SignalRConnection to the Configuration ApplicationSettings. I don't know what is missing. It appears that it cannot find the connectionstring
The text was updated successfully, but these errors were encountered:
I am getting an error on the negotiate endpoint related to the connection.
The actual error is Connection string missing required properties endpoint. (Parameter 'connectionString')
I am using BidirectionalChat example and using isolated process. My code works locally, but not when deployed to function app.
[Function("negotiate")] public async Task<SignalRConnectionInfo> Negotiate([HttpTrigger(AuthorizationLevel.Anonymous, "get")] HttpRequestData req, [SignalRConnectionInfoInput(HubName = "Events", UserId = "{query.personId}", ConnectionStringSetting = "xxxx_SignalRConnection")] SignalRConnectionInfo signalRConnectionInfo) { _logger.LogInformation("Executing Negotiate for SignalR."); return signalRConnectionInfo; }
I have added xxxx_SignalRConnection to the Configuration ApplicationSettings. I don't know what is missing. It appears that it cannot find the connectionstring
The text was updated successfully, but these errors were encountered: