rajrao commented on code in PR #34016:
URL: https://github.com/apache/airflow/pull/34016#discussion_r1314272113


##########
docs/apache-airflow/core-concepts/xcoms.rst:
##########
@@ -25,9 +25,23 @@ XComs (short for "cross-communications") are a mechanism 
that let :doc:`tasks` t
 
 An XCom is identified by a ``key`` (essentially its name), as well as the 
``task_id`` and ``dag_id`` it came from. They can have any (serializable) 
value, but they are only designed for small amounts of data; do not use them to 
pass around large values, like dataframes.
 
-XComs are explicitly "pushed" and "pulled" to/from their storage using the 
``xcom_push`` and ``xcom_pull`` methods on Task Instances. Many operators will 
auto-push their results into an XCom key called ``return_value`` if the 
``do_xcom_push`` argument is set to ``True`` (as it is by default), and 
``@task`` functions do this as well.
+XComs are explicitly "pushed" and "pulled" to/from their storage using the 
``xcom_push`` and ``xcom_pull`` methods on Task Instances. 

Review Comment:
   Thank you, I kept looking and could not find the trailing white space



-- 
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: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to