Skip to content
Snippets Groups Projects
Commit 4768d037 authored by Sean Owen's avatar Sean Owen Committed by Marcelo Vanzin
Browse files

[SPARK-15386][CORE] Master doesn't compile against Java 1.7 / Process.isAlive

## What changes were proposed in this pull request?

Remove call to Process.isAlive -- Java 8 only. Introduced in https://github.com/apache/spark/pull/13042 / SPARK-15263

## How was this patch tested?

Jenkins tests

Author: Sean Owen <sowen@cloudera.com>

Closes #13174 from srowen/SPARK-15386.
parent e8b79afa
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,7 @@ public class JavaUtils {
} catch (Exception e) {
throw new IOException("Failed to delete: " + file.getAbsolutePath(), e);
} finally {
if (process != null && process.isAlive()) {
if (process != null) {
process.destroy();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment