You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2020/08/27 18:02:55 UTC

[GitHub] [airflow] turbaszek opened a new issue #10611: Graph View shows other relations than in DAG

turbaszek opened a new issue #10611:
URL: https://github.com/apache/airflow/issues/10611


   **Apache Airflow version**:
   
   master
   
   **Kubernetes version (if you are using kubernetes)** (use `kubectl version`):
   
   **Environment**: breeze
   
   **What happened**:
   
   This DAG
   ```python
   from airflow import models
   from airflow.operators.dummy_operator import DummyOperator
   from airflow.utils.dates import days_ago
   
   with models.DAG("test", start_date=days_ago(1), schedule_interval=None,) as dag:
       t1 = DummyOperator(task_id="t1")
       t2 = DummyOperator(task_id="t2")
       t1 >> t2
   ```
   
   is rendering like that:
   
   <img width="1374" alt="Screenshot 2020-08-27 at 19 59 41" src="https://user-images.githubusercontent.com/9528307/91478403-11d7fb00-e8a0-11ea-91d0-d7d578bcb5a2.png">
   
   **What you expected to happen**:
   
   I expect to see same relations as defined in DAG file
   
   **How to reproduce it**:
   
   Render the example DAG from above.
   
   
   **Anything else we need to know**:
   
   I surprised by this bug 👀 
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] turbaszek commented on issue #10611: Graph View shows other relations than in DAG

Posted by GitBox <gi...@apache.org>.
turbaszek commented on issue #10611:
URL: https://github.com/apache/airflow/issues/10611#issuecomment-682112019


   Seems that the bug was introduced in https://github.com/apache/airflow/commit/8fdcc5760a104b0e4e5558191e0269bf873f8768#diff-e3fba382e484c6174a6fbef925b2e575


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] kaxil closed issue #10611: Graph View shows other relations than in DAG

Posted by GitBox <gi...@apache.org>.
kaxil closed issue #10611:
URL: https://github.com/apache/airflow/issues/10611


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org