SoftDed commented on issue #36837:
URL: https://github.com/apache/airflow/issues/36837#issuecomment-1905869197
Another observation.
I wrote my own xcom backend.
If I use S3Hook and fetch data from Connection in the metadata database,
everything breaks.
However, if I retrieve data from environment variables, such a 'hack' works.
I also checked that if xcom requests data directly from the database, it also
breaks:
```
@staticmethod
def deserialize_value(result):
result = BaseXCom.deserialize_value(result)
from airflow.models.connection import Connection
conn =
Connection.get_connection_from_secrets(S3XComBackend.S3_CONN_ID)
```
--
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]