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 afcffea commit 22b1acdCopy full SHA for 22b1acd
python/pyspark/java_gateway.py
@@ -83,7 +83,7 @@ def preexec_func():
83
# JVMs. Instead, we use "taskkill" with the tree-kill option "/t" to terminate all
84
# child processes.
85
def killChild():
86
- Popen(["cmd", "/c", "taskkill", "/f", "/t", "/pid", str(proc.pid)])
+ Popen(["cmd", "/c", "taskkill", "/f", "/t", "/pid", str(proc.pid)])
87
atexit.register(killChild)
88
89
# Create a thread to echo output from the GatewayServer, which is required
0 commit comments