Skip to content

Commit

Permalink
Fix stack ulimit for CI tests against pro
Browse files Browse the repository at this point in the history
  • Loading branch information
joe4dev committed Mar 15, 2023
1 parent 764d6a9 commit 62ee45d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/awslambda/test_lambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ def test_runtime_ulimits(self, lambda_client, create_lambda_function, snapshot,
monkeypatch.setattr(
config,
"LAMBDA_DOCKER_FLAGS",
"--ulimit nofile=1024:1024 --ulimit nproc=735:735 --ulimit core=-1:-1",
"--ulimit nofile=1024:1024 --ulimit nproc=735:735 --ulimit core=-1:-1 --ulimit stack=8388608:-1",
)

func_name = f"test_lambda_ulimits_{short_uid()}"
Expand Down

0 comments on commit 62ee45d

Please sign in to comment.