Re: [I] Dag schedule and 'next run' is only visible after 1st run on the dag details page [airflow]

2025-04-04 Thread via GitHub


tirkarthi closed issue #48191: Dag schedule and 'next run' is only visible 
after 1st run on the dag details page
URL: https://github.com/apache/airflow/issues/48191


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [I] Dag schedule and 'next run' is only visible after 1st run on the dag details page [airflow]

2025-04-02 Thread via GitHub


shyamalika-dev commented on issue #48191:
URL: https://github.com/apache/airflow/issues/48191#issuecomment-2771839940

   I attempted to replicate this issue using Airflow 3.0.0.dev0, but I 
encountered import errors while trying to use Asset from airflow.datasets or 
airflow.lineage.entities. Since Asset is not available in this version, I 
replaced it with Dataset as follows:
   
   import datetime
   from airflow import DAG
   from airflow.decorators import task
   from airflow.datasets import Dataset
   
   asset_controller = Dataset(name='asset_controller')
   
   with DAG(
   dag_id="test_asset_scheduled_controller",
   start_date=datetime.datetime.min,
   schedule='@daily',
   catchup=False,
   tags=["asset", "AIP-74"],
   ) as dag:
   
   @task(outlets=[asset_controller])
   def produce_dataset_events():
   pass
   
   produce_dataset_events()
   
   so can i use the dataset instead of Asset? 


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [I] Dag schedule and 'next run' is only visible after 1st run on the dag details page [airflow]

2025-03-30 Thread via GitHub


tirkarthi commented on issue #48191:
URL: https://github.com/apache/airflow/issues/48191#issuecomment-2765005265

   @ambika-garg Please let me know if you are still working on it to raise a 
PR. Thanks.


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [I] Dag schedule and 'next run' is only visible after 1st run on the dag details page [airflow]

2025-03-24 Thread via GitHub


vatsrahul1001 commented on issue #48191:
URL: https://github.com/apache/airflow/issues/48191#issuecomment-2750089247

   @ambika-garg assigned


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [I] Dag schedule and 'next run' is only visible after 1st run on the dag details page [airflow]

2025-03-24 Thread via GitHub


ambika-garg commented on issue #48191:
URL: https://github.com/apache/airflow/issues/48191#issuecomment-2748179551

   Hey @atul-astronomer, I can take this up, can you please assign it to me?


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]