Skip to content
This repository has been archived by the owner on Mar 11, 2024. It is now read-only.

Commit

Permalink
release 0.8.2 scala 2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Kolb committed Jan 2, 2018
1 parent 29deb2c commit b08c194
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ private void shutdownLocalCluster() throws InterruptedException {
TestBaseUtils.stopCluster(cluster, new FiniteDuration(1000, TimeUnit.SECONDS));
} catch (InterruptedException e) {
throw e;
} catch (IllegalStateException e) {
//this can happen in some cases if Flink has some timers register wih akka.
} catch (Exception e) {
e.printStackTrace();
}
Expand Down Expand Up @@ -176,8 +178,6 @@ private synchronized void cleanUp() {
}
try {
shutdownLocalCluster();
} catch (IllegalStateException e) {
//this can happen in some cases if Flink has some timers register wih akka.
} catch (InterruptedException e) {
throw new RuntimeException("Local cluster won't shutdown!");
}
Expand Down

0 comments on commit b08c194

Please sign in to comment.