This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
from f9b94829b40 Fix `breeze run` command to respect `--backend` flag
(#55977)
add 049123e8c73 Use ``SecretCache`` for connection and variable access in
task sdk (#55972)
No new revisions were added by this update.
Summary of changes:
task-sdk/src/airflow/sdk/definitions/connection.py | 86 +++++-
task-sdk/src/airflow/sdk/execution_time/context.py | 83 +++++-
task-sdk/tests/task_sdk/bases/test_hook.py | 2 +-
.../{test_connections.py => test_connection.py} | 124 ++++++++
.../tests/task_sdk/execution_time/test_context.py | 2 +-
.../task_sdk/execution_time/test_context_cache.py | 332 +++++++++++++++++++++
.../task_sdk/execution_time/test_task_runner.py | 2 +-
7 files changed, 612 insertions(+), 19 deletions(-)
rename task-sdk/tests/task_sdk/definitions/{test_connections.py =>
test_connection.py} (66%)
create mode 100644 task-sdk/tests/task_sdk/execution_time/test_context_cache.py