eladkal commented on issue #54157:
URL: https://github.com/apache/airflow/issues/54157#issuecomment-3158993389

   I am not able to reproduce this issue on main.
   
   Tested with
   
   ```
   from datetime import datetime
   from airflow.decorators import dag, task
   
   
   @dag(
       dag_id='log_generator',
       description='Generate 40K log lines',
       schedule=None,
       start_date=datetime(2024, 1, 1),
       catchup=False,
   )
   def log_generator_dag():
       @task
       def generate_40k_logs():
           """Generate 40K log lines"""
           for i in range(40000):
               print(f"Log line {i + 1}: This is a test log entry for 
performance testing")
   
       generate_40k_logs()
   
   
   log_generator_dag()
   ```
   


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