This is an automated email from the ASF dual-hosted git repository. gary pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink.git
commit 935313b80a1f23f827692ed0fb0ef4f6516e6265 Author: Gary Yao <[email protected]> AuthorDate: Fri Apr 17 08:01:21 2020 +0200 [hotfix][runtime] Fix import order in PipelinedRegionComputeUtil --- .../executiongraph/failover/flip1/PipelinedRegionComputeUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/failover/flip1/PipelinedRegionComputeUtil.java b/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/failover/flip1/PipelinedRegionComputeUtil.java index 539e20e..10a5342 100644 --- a/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/failover/flip1/PipelinedRegionComputeUtil.java +++ b/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/failover/flip1/PipelinedRegionComputeUtil.java @@ -22,8 +22,8 @@ package org.apache.flink.runtime.executiongraph.failover.flip1; import org.apache.flink.runtime.executiongraph.failover.flip1.partitionrelease.PipelinedRegion; import org.apache.flink.runtime.scheduler.strategy.ExecutionVertexID; import org.apache.flink.runtime.scheduler.strategy.SchedulingExecutionVertex; -import org.apache.flink.runtime.topology.Result; import org.apache.flink.runtime.topology.BaseTopology; +import org.apache.flink.runtime.topology.Result; import org.apache.flink.runtime.topology.Vertex; import org.slf4j.Logger;
