Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AIRFLOW-5100] Use safe_mode configuration setting by default #5757

Merged
merged 2 commits into from
Aug 12, 2019

Commits on Aug 8, 2019

  1. [AIRFLOW-5100] Use safe_mode configuration setting by default

    The scheduler calls `list_py_file_paths` to find DAGs to schedule. It does so
    without passing any parameters other than the directory. This means that
    it *won't* discover DAGs that are missing the words "airflow" and "DAG" even
    if DAG_DISCOVERY_SAFE_MODE is disabled.
    
    Since `list_py_file_paths` will refer to the configuration if
    `include_examples` is not provided, it makes sense to have the same behaviour
    for `safe_mode`.
    jml committed Aug 8, 2019
    Configuration menu
    Copy the full SHA
    9ecf286 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2019

  1. Configuration menu
    Copy the full SHA
    7de6733 View commit details
    Browse the repository at this point in the history