uranusjr commented on code in PR #57532:
URL: https://github.com/apache/airflow/pull/57532#discussion_r2532429412
##########
airflow-core/src/airflow/models/xcom.py:
##########
@@ -208,9 +209,10 @@ def set(
"this message. See Dynamic Task Mapping documentation for "
"more information about lazy proxy objects."
)
+ value_desc = "return value" if key == XCOM_RETURN_KEY else f"value
{key}"
log.warning(
warning_message,
- "return value" if key == XCOM_RETURN_KEY else f"value {key}",
+ value_desc,
Review Comment:
Why does this need to change?
--
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]