Blazor in Azure: The list of component records is not valid

后端 未结 1 1948
無奈伤痛
無奈伤痛 2021-01-13 02:32

When deploying our blazor app to azure, it fails four out of five times with this error (copied from chrome dev tools):

[2019-12-16T11:12:55.214Z] Informatio         


        
1条回答
  •  一向
    一向 (楼主)
    2021-01-13 03:28

    try this:

    services.AddSignalR().AddAzureSignalR(options =>
    {
        options.ServerStickyMode = Microsoft.Azure.SignalR.ServerStickyMode.Required;
    });
    

    0 讨论(0)
提交回复
热议问题