Skip to content

Commit

Permalink
Merge pull request apache#564 from thoralf-gutierrez/Correct_logged_s…
Browse files Browse the repository at this point in the history
…tate_in_BranchPythonOperator

Correct logged state in BranchPythonOperator
  • Loading branch information
mistercrunch committed Oct 28, 2015
2 parents f265f88 + c5904ce commit 8a8e9db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/operators/python_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class BranchPythonOperator(PythonOperator):
def execute(self, context):
branch = super(BranchPythonOperator, self).execute(context)
logging.info("Following branch " + branch)
logging.info("Marking other directly downstream tasks as failed")
logging.info("Marking other directly downstream tasks as skipped")
session = settings.Session()
for task in context['task'].downstream_list:
if task.task_id != branch:
Expand Down

0 comments on commit 8a8e9db

Please sign in to comment.