Skip to content

Commit 20f510e

Browse files
dlzhry2nhsmfjarvis
authored andcommitted
Adjust the batch size for the ack lambda (#763)
1 parent 2cc2f50 commit 20f510e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/deploy-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110

111111
- name: Install Poetry
112112
run: |
113-
curl -sSL https://install.python-poetry.org | python3 - --version 2.1.2
113+
curl -sSL https://install.python-poetry.org | python3 - --version 2.1.4
114114
echo "$HOME/.local/bin" >> $GITHUB_PATH
115115
poetry --version
116116

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
poetry 2.1.2
1+
poetry 2.1.4
22
nodejs 23.11.0
33
python 3.11.12

terraform/ack_lambda.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,6 @@ resource "aws_lambda_function" "ack_processor_lambda" {
231231
resource "aws_lambda_event_source_mapping" "sqs_to_lambda" {
232232
event_source_arn = aws_sqs_queue.fifo_queue.arn
233233
function_name = aws_lambda_function.ack_processor_lambda.arn
234-
batch_size = 10
234+
batch_size = 1 # VED-734 - forwarder lambda already sends a list of up to 100 messages in the body
235235
enabled = true
236236
}

0 commit comments

Comments
 (0)