(fix) make sure our heartbeat interval is always greater than the internal one

This commit is contained in:
Ludovic Marcotte
2016-02-12 13:07:34 -05:00
parent 7cbf019742
commit e4473a656b

View File

@@ -2014,6 +2014,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
}
else
{
if (heartbeatInterval < internalInterval)
heartbeatInterval = internalInterval;
status = 1;
}