Kengo Seki created AIRFLOW-1248:
-----------------------------------
Summary: Fix inconsistent configuration name for worker timeout
Key: AIRFLOW-1248
URL: https://issues.apache.org/jira/browse/AIRFLOW-1248
Project: Apache Airflow
Issue Type: Bug
Components: configuration, webserver
Reporter: Kengo Seki
Assignee: Kengo Seki
A parameter called {{web_server_worker_timeout}} is defined in airflow.cfg:
{code:title=airflow/config_templates/default_airflow.cfg}
# Number of seconds the gunicorn webserver waits before timing out on a worker
web_server_worker_timeout = 120
{code}
but it's wrongly referenced at the following location in cli.py:
{code:title=airflow/bin/cli.py}
738 worker_timeout = (args.worker_timeout or
739 conf.get('webserver', 'webserver_worker_timeout'))
{code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)