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 05ba6da commit 497f100Copy full SHA for 497f100
python/pyspark/java_gateway.py
@@ -56,7 +56,7 @@ def preexec_func():
56
(stdout, _) = proc.communicate()
57
exit_code = proc.poll()
58
error_msg = "Launching GatewayServer failed"
59
- error_msg += " with exit code %d!" % exit_code if exit_code else "! "
+ error_msg += " with exit code %d! " % exit_code if exit_code else "! "
60
error_msg += "(Warning: unexpected output detected.)\n\n"
61
error_msg += gateway_port + stdout
62
raise Exception(error_msg)
0 commit comments