Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Commit 0b2a5d1

Browse files
upgrade lambda-runtime-init (#13593)
1 parent 40c916d commit 0b2a5d1

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

localstack-core/localstack/services/lambda_/packages.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"""Customized LocalStack version of the AWS Lambda Runtime Interface Emulator (RIE).
1313
https://github.com/localstack/lambda-runtime-init/blob/localstack/README-LOCALSTACK.md
1414
"""
15-
LAMBDA_RUNTIME_DEFAULT_VERSION = "v0.1.38-pre"
15+
LAMBDA_RUNTIME_DEFAULT_VERSION = "v0.1.39-pre"
1616
LAMBDA_RUNTIME_VERSION = config.LAMBDA_INIT_RELEASE_VERSION or LAMBDA_RUNTIME_DEFAULT_VERSION
1717
LAMBDA_RUNTIME_INIT_URL = "https://github.com/localstack/lambda-runtime-init/releases/download/{version}/aws-lambda-rie-{arch}"
1818

@@ -66,7 +66,10 @@ def _install(self, target: InstallTarget) -> None:
6666
super()._install(target)
6767
install_location = self.get_executable_path()
6868
st = os.stat(install_location)
69-
os.chmod(install_location, mode=st.st_mode | stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH)
69+
os.chmod(
70+
install_location,
71+
mode=st.st_mode | stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH,
72+
)
7073

7174

7275
# TODO: replace usage in LocalStack tests with locally built Java jar and remove this unmaintained dependency.

0 commit comments

Comments
 (0)