KoviAnusha commented on code in PR #57532:
URL: https://github.com/apache/airflow/pull/57532#discussion_r2536114168
##########
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:
Mypy errors are already resolved in this file by another PR. So, resolving
this.
--
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]