Skip to content

Commit

Permalink
Fix python script
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentgo committed Jun 25, 2024
1 parent 42f3bcb commit 91090e7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions java/c/src/test/python/integration_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,12 @@ def setup_jvm():
jvm_args = [
"--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED"
]
# For debugging purpose please uncomment the following, and include *jvm_args, before **kwargs
# in startJVM function call
# For debugging purpose please uncomment the following
# jvm_args += [
# "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005"
# ]

jpype.startJVM(jpype.getDefaultJVMPath(), "-Djava.class.path=" + jar_path, **kwargs)
jpype.startJVM(jpype.getDefaultJVMPath(), "-Djava.class.path=" + jar_path, *jvm_args, **kwargs)


class Bridge:
Expand Down

0 comments on commit 91090e7

Please sign in to comment.