steveahnahn opened a new pull request, #56234:
URL: https://github.com/apache/airflow/pull/56234
## Problem
Fix `ValueError: dictionary update sequence element #0 has length 1; 2 is
required error` when using CloudRunExecuteJobOperator with deferrable=True. The
issue occurred because XCom data serialization in deferred execution sometimes
stores logging link data as strings instead of dictionaries, causing
BaseGoogleLink.get_config() to fail when attempting dict updates
## Solution
Modified BaseGoogleLink.get_config() to handle both string and dictionary
XCom values
## Testing
Added comprehensive unit test test_get_config_with_string_xcom_value
covering:
- String XCom values
- Dictionary XCom values
- None XCom values
## Related Issue:
#55996
--
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]