From issues-return-154701-archive-asf-public=cust-asf.ponee.io@flink.apache.org Thu Feb 22 14:53:16 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id E2D1518064E for ; Thu, 22 Feb 2018 14:53:15 +0100 (CET) Received: (qmail 72513 invoked by uid 500); 22 Feb 2018 13:53:15 -0000 Mailing-List: contact issues-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list issues@flink.apache.org Received: (qmail 72504 invoked by uid 99); 22 Feb 2018 13:53:15 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Feb 2018 13:53:15 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id DEDFEE04FA; Thu, 22 Feb 2018 13:53:14 +0000 (UTC) From: tillrohrmann To: issues@flink.apache.org Reply-To: issues@flink.apache.org References: In-Reply-To: Subject: [GitHub] flink pull request #5548: [FLINK-8732] [flip6] Cancel ongoing scheduling ope... Content-Type: text/plain Message-Id: <20180222135314.DEDFEE04FA@git1-us-west.apache.org> Date: Thu, 22 Feb 2018 13:53:14 +0000 (UTC) Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/flink/pull/5548#discussion_r169960433 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/Execution.java --- @@ -377,14 +377,14 @@ public boolean scheduleForExecution() { * @param queued Flag to indicate whether the scheduler may queue this task if it cannot * immediately deploy it. * @param locationPreferenceConstraint constraint for the location preferences - * @throws IllegalStateException Thrown, if the vertex is not in CREATED state, which is the only state that permits scheduling. + * @returns Future which is completed once the Execution has been deployed --- End diff -- True, will change it. ---