Skip to content

Commit

Permalink
[#1140] bumped flink version to 1.7.0 (#1142)
Browse files Browse the repository at this point in the history
fixes #1140
  • Loading branch information
Kevin Gómez committed Jan 16, 2019
1 parent 1b37721 commit 4aa27a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Expand Up @@ -19,7 +19,6 @@
import org.apache.flink.api.java.ExecutionEnvironment;
import org.apache.flink.configuration.Configuration;
import org.apache.flink.runtime.minicluster.LocalFlinkMiniCluster;
import org.apache.flink.test.util.TestBaseUtils;
import org.apache.flink.test.util.TestEnvironment;
import org.gradoop.common.GradoopTestUtils;
import org.gradoop.common.model.api.entities.EPGMElement;
Expand All @@ -36,7 +35,6 @@
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.BeforeClass;
import scala.concurrent.duration.FiniteDuration;

import java.io.File;
import java.io.IOException;
Expand All @@ -46,7 +44,6 @@
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.concurrent.TimeUnit;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
Expand Down Expand Up @@ -168,8 +165,8 @@ public static void setupFlink() throws Exception {
}

@AfterClass
public static void tearDownFlink() throws Exception {
TestBaseUtils.stopCluster(CLUSTER, new FiniteDuration(1000, TimeUnit.SECONDS));
public static void tearDownFlink() {
CLUSTER.stop();
}

//----------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -129,7 +129,7 @@
<!-- alpha order require -->
<dep.accumulo.version>1.9.0</dep.accumulo.version>
<dep.commons-cli.version>1.4</dep.commons-cli.version>
<dep.flink.version>1.6.0</dep.flink.version>
<dep.flink.version>1.7.0</dep.flink.version>
<dep.gdl.version>0.3</dep.gdl.version>
<dep.hbase.version>1.4.3</dep.hbase.version>
<dep.javafastpfor.version>0.1.10</dep.javafastpfor.version>
Expand Down

0 comments on commit 4aa27a6

Please sign in to comment.