prabhusneha opened a new pull request, #48648:
URL: https://github.com/apache/airflow/pull/48648

   Closes: https://github.com/apache/airflow/issues/47941
   
   
   **Testing:**
   
   **DAG used:**
   
   `from airflow import DAG
   from airflow.decorators import task
   from airflow.macros import uuid
   
   
   
   
   default_args = {
      'owner': 'airflow',
   }
   
   
   with DAG(
      'rendered_task_instance_fields',
      default_args=default_args,
      schedule=None,
      catchup=False,
   ) as dag:
     
      @task
      def pusher1(dict1):
          return dict1
     
      t1 = pusher1(["hello_world", 
str(uuid.UUID("01234567891011121314151617181920"))])
     
      t1
   `
   
   In AF2 rendered_field in rendered_task_instance_fields was a list:
   
   <img width="621" alt="image" 
src="https://github.com/user-attachments/assets/b97626c6-d3bf-484f-9020-13ff08b18b6f";
 />
   
   and in AF3 before the changes from this PR it was a string:
   
   <img width="637" alt="image" 
src="https://github.com/user-attachments/assets/b7e29c39-a7ef-4ca6-9bde-f7727516d2c2";
 />
   
   
   Now, after the change in this PR:
   
   <img width="1183" alt="image" 
src="https://github.com/user-attachments/assets/fc9f1bb0-05e6-4087-9226-22a855c78266";
 />
   


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