Uploaded image for project: 'Flink'
  1. Flink
  2. FLINK-9546

The heartbeatTimeoutIntervalMs of HeartbeatMonitor should be larger than 0

    XMLWordPrintableJSON

Details

    Description

      The heartbeatTimeoutIntervalMs of HeartbeatMonitor should be larger than 0, currently the arg check looks like

      Preconditions.checkArgument(heartbeatTimeoutIntervalMs >= 0L, "The heartbeat timeout interval has to be larger than 0.");
      

      it should be

      Preconditions.checkArgument(heartbeatTimeoutIntervalMs > 0L, "The heartbeat timeout interval has to be larger than 0.");
      

      Attachments

        Activity

          People

            sihuazhou Sihua Zhou
            sihuazhou Sihua Zhou
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: