We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc7804f commit 80ddcb4Copy full SHA for 80ddcb4
launcher/src/main/java/org/apache/spark/launcher/LauncherServer.java
@@ -337,10 +337,10 @@ public void close() throws IOException {
337
}
338
super.close();
339
if (handle != null) {
340
- if (!handle.getState().isFinal()) {
341
- LOG.log(Level.WARNING, "Lost connection to spark application.");
342
- handle.setState(SparkAppHandle.State.LOST);
343
- }
+ if (!handle.getState().isFinal()) {
+ LOG.log(Level.WARNING, "Lost connection to spark application.");
+ handle.setState(SparkAppHandle.State.LOST);
+ }
344
handle.disconnect();
345
346
0 commit comments