Skip to content

Commit

Permalink
fixup! [AIRFLOW-6181] Add InProcessExecutor (apache#6740)
Browse files Browse the repository at this point in the history
  • Loading branch information
potiuk committed Jan 21, 2020
1 parent d4d9822 commit 102def0
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -10,6 +10,7 @@ secrets.py
airflow.db
unittests.db


# Airflow temporary artifacts
airflow/git_version
airflow/www/static/coverage/
Expand Down
11 changes: 11 additions & 0 deletions airflow/config_templates/config.yml
Expand Up @@ -456,6 +456,17 @@
type: string
example: ~
default: "http://localhost:8080"
- name: debug
description: ~
options:
- name: fail_fast
description: |
Used only with DebugExecutor. If set to True DAG will fail with first
failed task. Helpful for debugging purposes.
version_added: ~
type: string
example: ~
default: "False"
- name: api
description: ~
options:
Expand Down
5 changes: 5 additions & 0 deletions airflow/config_templates/default_airflow.cfg
Expand Up @@ -237,6 +237,11 @@ api_client = airflow.api.client.local_client
# So api will look like: ``http://localhost:8080/myroot/api/experimental/...``
endpoint_url = http://localhost:8080

[debug]
# Used only with DebugExecutor. If set to True DAG will fail with first
# failed task. Helpful for debugging purposes.
fail_fast = False

[api]
# How to authenticate users of the API
auth_backend = airflow.api.auth.backend.default
Expand Down

0 comments on commit 102def0

Please sign in to comment.