Skip to content

Commit 0a7f326

Browse files
authored
Merge branch 'main' into PRMP-915
2 parents 7a2f002 + 892da6d commit 0a7f326

File tree

140 files changed

+2837
-1172
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+2837
-1172
lines changed

.github/workflows/base-lambdas-reusable-deploy-all.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -810,3 +810,17 @@ jobs:
810810
lambda_layer_names: "core_lambda_layer,reports_lambda_layer"
811811
secrets:
812812
AWS_ASSUME_ROLE: ${{ secrets.AWS_ASSUME_ROLE }}
813+
814+
deploy_concurrency_controller_lambda:
815+
name: Deploy Concurrency Controller Lambda
816+
uses: ./.github/workflows/base-lambdas-reusable-deploy.yml
817+
with:
818+
environment: ${{ inputs.environment }}
819+
python_version: ${{ inputs.python_version }}
820+
build_branch: ${{ inputs.build_branch }}
821+
sandbox: ${{ inputs.sandbox }}
822+
lambda_handler_name: concurrency_controller_handler
823+
lambda_aws_name: ConcurrencyController
824+
lambda_layer_names: "core_lambda_layer"
825+
secrets:
826+
AWS_ASSUME_ROLE: ${{ secrets.AWS_ASSUME_ROLE }}

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,16 @@ clean-test:
8181
find . -name '.cache' -exec rm -fr {} +
8282

8383
format:
84+
ifeq ($(CONTAINER), true)
85+
./.venv/bin/python3 -m isort --profile black lambdas/
86+
./.venv/bin/python3 -m black lambdas/
87+
./.venv/bin/ruff check lambdas/ --fix
88+
else
8489
./lambdas/venv/bin/python3 -m isort --profile black lambdas/
8590
./lambdas/venv/bin/python3 -m black lambdas/
8691
./lambdas/venv/bin/ruff check lambdas/ --fix
92+
endif
93+
8794

8895
sort-requirements:
8996
sort -o $(TEST_REQUIREMENTS) $(TEST_REQUIREMENTS)

0 commit comments

Comments
 (0)