Merge pull request #1810 from aspnet/release/2.1
Change default handshake timeout (#1808)
This commit is contained in:
commit
ac5dfcf909
|
|
@ -10,7 +10,7 @@ namespace Microsoft.AspNetCore.SignalR
|
|||
{
|
||||
public class HubOptionsSetup : IConfigureOptions<HubOptions>
|
||||
{
|
||||
internal static TimeSpan DefaultHandshakeTimeout => TimeSpan.FromSeconds(5);
|
||||
internal static TimeSpan DefaultHandshakeTimeout => TimeSpan.FromSeconds(15);
|
||||
|
||||
internal static TimeSpan DefaultKeepAliveInterval => TimeSpan.FromSeconds(15);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue