LionelZhao28 commented on a change in pull request #17749:
URL: https://github.com/apache/airflow/pull/17749#discussion_r697966463



##########
File path: airflow/example_dags/example_xcom.py
##########
@@ -57,6 +58,14 @@ def puller(**kwargs):
         raise ValueError(f'The two values differ {pulled_value_2} and 
{value_2}')
 
 
+def pull_value_from_bash_push(**kwargs):
+    ti = kwargs['ti']
+    bash_pushed_via_return_value = ti.xcom_pull(key="xcom_pushed_value", 
task_ids=['bash_push'])
+    bash_manually_pushed_value = ti.xcom_pull(key="xcom_pushed_value", 
task_ids=['bash_push'])

Review comment:
       Yes,I agree.
   I pushed the bug fix.
   Thanks for pointing it out.




-- 
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]


Reply via email to