Skip to content

Commit edcaf97

Browse files
author
Hubert Plociniczak
committed
Default heartbeat should be 3 seconds.
1 parent e6e2d19 commit edcaf97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client/api/ConnectionParameters.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ public class ConnectionParameters : ICloneable
8080
public const uint DefaultFrameMax = 0; // PLEASE KEEP THIS MATCHING THE DOC ABOVE
8181

8282
/// <summary>Default value for desired heartbeat interval, in
83-
/// seconds, with zero meaning none (value: 0)</summary>
84-
public const ushort DefaultHeartbeat = 0; // PLEASE KEEP THIS MATCHING THE DOC ABOVE
83+
/// seconds, with zero meaning none (value: 3)</summary>
84+
public const ushort DefaultHeartbeat = 3; // PLEASE KEEP THIS MATCHING THE DOC ABOVE
8585

8686
private string m_userName = DefaultUser;
8787
private string m_password = DefaultPass;

0 commit comments

Comments
 (0)