Skip to content

Commit

Permalink
Changed ack threshold to 30 seconds.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfowl committed Oct 10, 2012
1 parent a1235bc commit 79237c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SignalR/AckHandler.cs
Expand Up @@ -17,7 +17,7 @@ internal class AckHandler : IAckHandler, IDisposable

public AckHandler()
: this(cancelAcksOnTimeout: true,
ackThreshold: TimeSpan.FromMinutes(5),
ackThreshold: TimeSpan.FromMinutes(30),
ackInterval: TimeSpan.FromSeconds(10))
{
}
Expand Down

2 comments on commit 79237c0

@willdean
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks more like 30 minutes than 30 seconds...

@davidfowl
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

O snap

Please sign in to comment.