srowen commented on pull request #31796:
URL: https://github.com/apache/spark/pull/31796#issuecomment-796834852


   For reference, the diff in the py4j code is:
   
   ```
   diff py4j-1/clientserver.py py4j-2/clientserver.py
   149c149
   <             Default is 25333.
   ---
   >             Default is 25334.
   diff py4j-1/java_gateway.py py4j-2/java_gateway.py
   224c224,225
   <                    enable_auth=False, cwd=None, return_proc=False):
   ---
   >                    enable_auth=False, cwd=None, return_proc=False,
   >                    use_shell=False):
   275a277,278
   >     :param use_shell – If True, Popen will be start the java process with
   >         shell=True
   327,328c330,333
   <     proc = Popen(command, stdout=PIPE, stdin=PIPE, stderr=stderr,
   <                  cwd=cwd, **popen_kwargs)
   ---
   >     popen_kwargs["shell"] = use_shell
   >     proc = Popen(
   >         command, stdout=PIPE, stdin=PIPE, stderr=stderr, cwd=cwd,
   >         **popen_kwargs)
   825c830
   <             Default is 25333.
   ---
   >             Default is 25334.
   2087c2092,2093
   <             create_new_process_group=False, enable_auth=False, cwd=None):
   ---
   >             create_new_process_group=False, enable_auth=False, cwd=None,
   >             use_shell=False):
   2134a2141,2142
   >         :param use_shell – If True, Popen will be start the java process 
with
   >             shell=True
   2144c2152,2153
   <             enable_auth=enable_auth, cwd=cwd, return_proc=True)
   ---
   >             enable_auth=enable_auth, cwd=cwd, return_proc=True,
   >             use_shell=use_shell)
   diff py4j-1/version.py py4j-2/version.py
   1c1
   < __version__ = '0.10.9.1'
   ---
   > __version__ = '0.10.9.2'
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to