This is an automated email from the ASF dual-hosted git repository. yuzelin pushed a commit to branch release-0.1 in repository https://gitbox.apache.org/repos/asf/paimon-python.git
commit 46d44dae75d53f07b4837ab439e935da75552dc4 Author: yuzelin <[email protected]> AuthorDate: Thu Oct 31 17:21:33 2024 +0800 [hotfix] Fix runtime exception on windows (#23) (cherry picked from commit 0d0237b9e1d023f57f958dcbb83cdbf77aac8e5b) --- paimon_python_java/gateway_server.py | 1 + 1 file changed, 1 insertion(+) diff --git a/paimon_python_java/gateway_server.py b/paimon_python_java/gateway_server.py index fc05ddc..7285e98 100644 --- a/paimon_python_java/gateway_server.py +++ b/paimon_python_java/gateway_server.py @@ -63,6 +63,7 @@ def launch_gateway_server_process(env): *main_args ] + preexec_fn = None if not on_windows(): def preexec_func(): # ignore ctrl-c / SIGINT
