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-2930] Fix celery excecutor scheduler crash #3784

Merged

Commits on Aug 23, 2018

  1. [AIRFLOW-2930] Fix celery excecutor scheduler crash

    Caused by an update in PR apache#3740.
    execute_command.apply_async(args=command, ...)
    -command is a list of short unicode strings and the above code pass multiple
    arguments to a function defined as taking only one argument.
    -command = ["airflow", "run", "dag323",...]
    -args = command = ["airflow", "run", "dag323", ...]
    -execute_command("airflow","run","dag3s3", ...) will be error and exit.
    yingbo_wang committed Aug 23, 2018
    Configuration menu
    Copy the full SHA
    b75e4ad View commit details
    Browse the repository at this point in the history