puzzle9 opened a new issue, #53432: URL: https://github.com/apache/airflow/issues/53432
### Apache Airflow version 3.0.3 ### If "Other Airflow 2 version" selected, which one? 3.0.2 ### What happened? In version 3.0.2, the returned content is In version 3.0.3, the returned path is normal <img width="3032" height="809" alt="Image" src="https://github.com/user-attachments/assets/acdb5b5c-cd21-4605-b89c-174c0cb6db14" /> <img width="3032" height="809" alt="Image" src="https://github.com/user-attachments/assets/398e89b2-46fa-43f4-9087-639cb4319677" /> error <img width="3032" height="809" alt="Image" src="https://github.com/user-attachments/assets/8c4d92a5-04d0-49b3-9cf8-efbcc404ca7d" /> <img width="3032" height="809" alt="Image" src="https://github.com/user-attachments/assets/703b3ff0-3355-4162-8555-322a7ba8606e" /> ### What you think should happen instead? _No response_ ### How to reproduce ```python3 from datetime import datetime from airflow import DAG from airflow.decorators import task with DAG( dag_id='dag_test_xcom', schedule='@once', start_date=datetime(2025, 7, 10), ) as dag: @task(do_xcom_push=True) def gen_xcom(): print("data") return 'a' * 1024 * 1024 @task def get_xcom(**context): datas = context['ti'].xcom_pull(task_ids='gen_xcom') print(datas) gen_xcom() >> [get_xcom()] ``` ### Operating System Debian GNU/Linux 12 (bookworm) ### Versions of Apache Airflow Providers _No response_ ### Deployment Docker-Compose ### Deployment details _No response_ ### Anything else? _No response_ ### Are you willing to submit PR? - [x] 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]
