Merge pull request #1810 from aspnet/release/2.1

Change default handshake timeout (#1808)
This commit is contained in:
David Fowler 2018-03-31 12:27:46 -07:00 committed by GitHub
commit ac5dfcf909
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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);