Skip to content

Commit e3aec67

Browse files
committed
Add fallback value for AWS Lambda executor end_wait_timeout config
1 parent 90d4a3b commit e3aec67

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

providers/amazon/src/airflow/providers/amazon/aws/executors/aws_lambda/lambda_executor.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,7 @@ def __init__(self, *args, **kwargs):
9292

9393
def start(self):
9494
"""Call this when the Executor is run for the first time by the scheduler."""
95-
check_health = conf.getboolean(
96-
CONFIG_GROUP_NAME, AllLambdaConfigKeys.CHECK_HEALTH_ON_STARTUP, fallback=True
97-
)
95+
check_health = conf.getboolean(CONFIG_GROUP_NAME, AllLambdaConfigKeys.CHECK_HEALTH_ON_STARTUP)
9896

9997
if not check_health:
10098
return

0 commit comments

Comments
 (0)