ASP.NET CORE 2.1 Server timeout while debugging

前端 未结 2 1518
[愿得一人]
[愿得一人] 2021-02-20 03:15

\'Error: Server timeout elapsed without receiving a message from the server.\'.

I\'m trying to debug some server-side code and while I do

2条回答
  •  一生所求
    2021-02-20 03:22

    Thanks to @Arhire Ionut

    Here is how to increase Javascript client timeout

    hubConnection.serverTimeoutInMilliseconds = 100000; // 100 second
    

    More details here => https://github.com/aspnet/Docs/issues/6885

提交回复
热议问题