Skip to content

Commit eab6a93

Browse files
committed
Set default heartbeat request to zero.
1 parent 7674fd2 commit eab6a93

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: 3)</summary>
84-
public const ushort DefaultHeartbeat = 3; // PLEASE KEEP THIS MATCHING THE DOC ABOVE
83+
/// seconds, with zero meaning none (value: 0)</summary>
84+
public const ushort DefaultHeartbeat = 0; // 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)