[
https://issues.apache.org/jira/browse/FLINK-9546?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16504408#comment-16504408
]
ASF GitHub Bot commented on FLINK-9546:
---------------------------------------
Github user sihuazhou commented on the issue:
https://github.com/apache/flink/pull/6135
cc @tillrohrmann
> The heartbeatTimeoutIntervalMs of HeartbeatMonitor should be larger than 0
> --------------------------------------------------------------------------
>
> Key: FLINK-9546
> URL: https://issues.apache.org/jira/browse/FLINK-9546
> Project: Flink
> Issue Type: Bug
> Components: Core
> Reporter: Sihua Zhou
> Assignee: Sihua Zhou
> Priority: Minor
>
> The heartbeatTimeoutIntervalMs of HeartbeatMonitor should be larger than 0,
> currently the arg check looks like
> {code:java}
> Preconditions.checkArgument(heartbeatTimeoutIntervalMs >= 0L, "The heartbeat
> timeout interval has to be larger than 0.");
> {code}
> it should be
> {code:java}
> Preconditions.checkArgument(heartbeatTimeoutIntervalMs > 0L, "The heartbeat
> timeout interval has to be larger than 0.");
> {code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)