You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by "Newton Le (JIRA)" <ji...@apache.org> on 2018/09/26 21:30:00 UTC

[jira] [Created] (AIRFLOW-3123) DAG context manager fails in nested cases

Newton Le created AIRFLOW-3123:
----------------------------------

             Summary: DAG context manager fails in nested cases
                 Key: AIRFLOW-3123
                 URL: https://issues.apache.org/jira/browse/AIRFLOW-3123
             Project: Apache Airflow
          Issue Type: Bug
          Components: DAG
            Reporter: Newton Le
            Assignee: Newton Le


DAG context manager fails under some cases with nested contexts:

{code:python}
with DAG( ... ) as dag:
  op1 = Operator()

  with dag:
    op2 = Operator()

  op3 = Operator
{code}

op3 will not continue to be assigned the original DAG after exiting the nested context.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)