Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions providers/amazon/docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

Changelog
---------
* ``Rename ''max_run_task_attempts'' to ''max_invoke_attempts'' in AWS Lambda Executor (#60666)``

9.20.0
......
Expand Down
2 changes: 1 addition & 1 deletion providers/amazon/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1074,7 +1074,7 @@ config:
type: boolean
example: "True"
default: "True"
max_run_task_attempts:
max_invoke_attempts:
description: |
The maximum number of times the Lambda Executor should attempt to start an Airflow task.
version_added: "9.9.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class AllLambdaConfigKeys(InvokeLambdaKwargsConfigKeys):

AWS_CONN_ID = "conn_id"
CHECK_HEALTH_ON_STARTUP = "check_health_on_startup"
MAX_INVOKE_ATTEMPTS = "max_run_task_attempts"
MAX_INVOKE_ATTEMPTS = "max_invoke_attempts"
REGION_NAME = "region_name"
QUEUE_URL = "queue_url"
DLQ_URL = "dead_letter_queue_url"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1207,7 +1207,7 @@ def get_provider_info():
"example": "True",
"default": "True",
},
"max_run_task_attempts": {
"max_invoke_attempts": {
"description": "The maximum number of times the Lambda Executor should attempt to start an Airflow task.\n",
"version_added": "9.9.0",
"type": "integer",
Expand Down