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 2022/07/20 11:04:11 UTC

[GitHub] [airflow] ccomkhj opened a new issue, #25180: Grid doesn't show when trigger_rule="dummy"

ccomkhj opened a new issue, #25180:
URL: https://github.com/apache/airflow/issues/25180

   ### Apache Airflow version
   
   2.3.2
   
   ### What happened
   
   Grid doesn't show in the airflow web server page.
   When trigger_rule is set to "dummy"
   
   ### What you think should happen instead
   
   dummy set up occurs errors.
   
   ### How to reproduce
   
   import pendulum
   ```
   from airflow.decorators import dag
   from airflow.operators.dummy_operator import DummyOperator
   
   @dag(
       start_date=pendulum.datetime(2022, 7, 18, tz="Europe/Amsterdam"),
       schedule_interval="0 */6 * * *",
   )
   def check_sth():
       "Dag of checking atlas server of production sites."
   
       start = DummyOperator(task_id="start")
       end = DummyOperator(
           task_id="end",
           # trigger_rule="dummy",
       )
   
       start >> end 
   
   
   run = check_sth()  
   ```
   
   
   ### Operating System
   
   Ubuntu 20.04.3 LTS
   
   ### Versions of Apache Airflow Providers
   
   _No response_
   
   ### Deployment
   
   Docker-Compose
   
   ### Deployment details
   
   _No response_
   
   ### Anything else
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org.apache.org

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


[GitHub] [airflow] boring-cyborg[bot] commented on issue #25180: Grid doesn't show when trigger_rule="dummy"

Posted by GitBox <gi...@apache.org>.
boring-cyborg[bot] commented on issue #25180:
URL: https://github.com/apache/airflow/issues/25180#issuecomment-1190136856

   Thanks for opening your first issue here! Be sure to follow the issue template!
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

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


[GitHub] [airflow] ccomkhj commented on issue #25180: Grid doesn't show when trigger_rule="dummy"

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

   This is apparently the bug in airflow2.3.2.
   When I upgrade to airflow 2.3.3, this error is resolved!


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

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


[GitHub] [airflow] ccomkhj closed issue #25180: Grid doesn't show when trigger_rule="dummy"

Posted by GitBox <gi...@apache.org>.
ccomkhj closed issue #25180: Grid doesn't show when trigger_rule="dummy"
URL: https://github.com/apache/airflow/issues/25180


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

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