ashb commented on issue #50185:
URL: https://github.com/apache/airflow/issues/50185#issuecomment-2967053571
Thinking about this a bit more and re-reading the your super helpful
comments, I'm not sure this approach will get around the fundamental problem of
sync_to_async.
We can't easily (today/now) add async versions of get_connection etc, so we
have the issue that the calling code ends up doing:
```python
connection = await sync_to_async(self.get_connection)(self.aws_conn_id)
```
Given that constraint (that we sort of really want to support this code,
sadly) I'm not sure my queue etc approach will help at all.
--
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]