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 24ff579 commit c450d24Copy full SHA for c450d24
python/pyspark/java_gateway.py
@@ -104,6 +104,7 @@ def preexec_func():
104
def connect(input_pipe, out_pipe):
105
"""Connect the input pipe to the output. We can't use os.dup for IPython
106
or directly write to them (see https://github.com/ipython/ipython/pull/3072/)."""
107
+ print("Connecting pipes....")
108
for line in iter(input_pipe.readline, b''):
109
print(line, file=out_pipe)
110
input_pipe.close()
0 commit comments