8000 Add JRE dependency to Java components by lizard-boy · Pull Request #11 · grepdemos/localstack · GitHub
[go: up one dir, main page]

Skip to content

Add JRE dependency to Java components #11

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Prev Previous commit
Fix bad arg type
  • Loading branch information
viren-nadkarni committed Sep 12, 2024
commit a60dc53ac2d6b173c58d423cb60c36c08b8f9c23
2 changes: 1 addition & 1 deletion localstack-core/localstack/services/events/event_ruler.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def start_jvm() -> None:
jvm_lib, event_ruler_libs_path = get_jpype_lib_paths()
event_ruler_libs_pattern = event_ruler_libs_path.joinpath("*")

jpype.startJVM(jvm_lib, classpath=[event_ruler_libs_pattern])
jpype.startJVM(str(jvm_lib), classpath=[event_ruler_libs_pattern])


@cache
Expand Down
0