-
Notifications
You must be signed in to change notification settings - Fork 16.4k
Closed
Labels
affected_version:3.0Issues Reported for 3.0Issues Reported for 3.0area:corearea:custom_xcom_backendkind:bugThis is a clearly a bugThis is a clearly a bug
Milestone
Description
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?
- Yes I am willing to submit a PR!
Code of Conduct
- I agree to follow this project's Code of Conduct
Metadata
Metadata
Assignees
Labels
affected_version:3.0Issues Reported for 3.0Issues Reported for 3.0area:corearea:custom_xcom_backendkind:bugThis is a clearly a bugThis is a clearly a bug