Skip to content

Commit

Permalink
[FLINK-3434] Prevent NPE in ClientFrontend#getClient()
Browse files Browse the repository at this point in the history
This closes apache#1695
  • Loading branch information
supermegaciaccount authored and rmetzger committed Feb 26, 2016
1 parent 9692c83 commit 0fb6e0d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -367,9 +367,8 @@ protected AbstractFlinkYarnCluster deployInternal() throws Exception {
try {
org.apache.flink.core.fs.FileSystem.setDefaultScheme(flinkConfiguration);
} catch (IOException e) {
LOG.error("Error while setting the default " +
throw new IOException("Error while setting the default " +
"filesystem scheme from configuration.", e);
return null;
}
// ------------------ Check if the specified queue exists --------------

Expand Down

0 comments on commit 0fb6e0d

Please sign in to comment.