Pad71 opened a new issue, #42096: URL: https://github.com/apache/airflow/issues/42096
### Apache Airflow version Other Airflow 2 version (please specify below) ### If "Other Airflow 2 version" selected, which one? 2.10.1 ### What happened? There was a bug in version 2.10 when displaying xcom values in the UI. It should have been fixed - see https://github.com/apache/airflow/pull/41516. However, the problem persists for boolean False values (see images below). For True - xcom displays correct value  For False - xcom displays wrong value  Test Dag Code: ``` from datetime import datetime from airflow import DAG from airflow.operators.python import PythonOperator # DAG Definition with DAG( dag_id="TEST_XCOM_BOOLEANS", schedule = None, start_date = datetime(2024, 9, 8), ) as dag: def return_true(): return True true_task = PythonOperator( task_id = 'true_task', python_callable = return_true, trigger_rule = 'none_failed', ) def return_false(): return False false_task = PythonOperator( task_id = 'false_task', python_callable = return_false, trigger_rule = 'none_failed', ) ``` ### What you think should happen instead? For False value it should display "False" and not "Value is NULL" ### How to reproduce Run Dag (see the code below) Test Dag Code: ``` from datetime import datetime from airflow import DAG from airflow.operators.python import PythonOperator # DAG Definition with DAG( dag_id="TEST_XCOM_BOOLEANS", schedule = None, start_date = datetime(2024, 9, 8), ) as dag: def return_true(): return True true_task = PythonOperator( task_id = 'true_task', python_callable = return_true, trigger_rule = 'none_failed', ) def return_false(): return False false_task = PythonOperator( task_id = 'false_task', python_callable = return_false, trigger_rule = 'none_failed', ) ``` ### Operating System Kubernetes on Unix platform ### Versions of Apache Airflow Providers _No response_ ### Deployment Official Apache Airflow Helm Chart ### 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 - [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]
