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
error
What you think should happen instead?
No response
How to reproduce
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?
Code of Conduct
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
error
What you think should happen instead?
No response
How to reproduce
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?
Code of Conduct