atul-astronomer opened a new issue, #63724:
URL: https://github.com/apache/airflow/issues/63724

   ### Apache Airflow version
   
   main (development)
   
   ### If "Other Airflow 3 version" selected, which one?
   
   _No response_
   
   ### What happened?
   
   <img width="1798" height="342" alt="Image" 
src="https://github.com/user-attachments/assets/25448ed4-dc42-4911-be05-6a62772bc809";
 />
   
   ### What you think should happen instead?
   
   _No response_
   
   ### How to reproduce
   
   Use the below Dag to reproduce the issue on airflow main branch:
   
   ```python
   from __future__ import annotations
   
   import pendulum
   
   from airflow.sdk import Asset, asset, dag, task
   
   
   @asset(uri="s3://bucket/asset1_producer", schedule=None)
   def asset1_producer():
       pass
   
   
   @asset(uri="s3://bucket/object", schedule=None)
   def asset2_producer(self, context, asset1_producer):
       print(self)
       print(context["inlet_events"][asset1_producer])
   
   ``` 
   
   ### Operating System
   
   Linux
   
   ### Versions of Apache Airflow Providers
   
   _No response_
   
   ### Deployment
   
   Other
   
   ### 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: [email protected]

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

Reply via email to