Skip to content

Commit 1239be5

Browse files
dfangldominikschubert
authored andcommitted
Allow proper python signal handling if jpype runs (#11906)
1 parent 7514511 commit 1239be5

File tree

1 file changed

+1
-1
lines changed
  • localstack-core/localstack/services/stepfunctions/asl/jsonata

1 file changed

+1
-1
lines changed

localstack-core/localstack/services/stepfunctions/asl/jsonata/jsonata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def __init__(self):
5050
jvm_path = jpype.getDefaultJVMPath()
5151
jsonata_libs_path = Path(installer.get_installed_dir())
5252
event_ruler_libs_pattern = jsonata_libs_path.joinpath("*")
53-
jpype.startJVM(jvm_path, classpath=[event_ruler_libs_pattern])
53+
jpype.startJVM(jvm_path, classpath=[event_ruler_libs_pattern], interrupt=False)
5454

5555
from com.fasterxml.jackson.databind import ObjectMapper # noqa
5656
from com.dashjoin.jsonata.Jsonata import jsonata # noqa

0 commit comments

Comments
 (0)