anishgirianish commented on code in PR #62343:
URL: https://github.com/apache/airflow/pull/62343#discussion_r3179136463
##########
airflow-core/src/airflow/executors/base_executor.py:
##########
@@ -216,6 +218,7 @@ def __init__(self, parallelism: int = PARALLELISM,
team_name: str | None = None)
self.team_name: str | None = team_name
self.queued_tasks: dict[TaskInstanceKey, workloads.ExecuteTask] = {}
self.queued_callbacks: dict[str, workloads.ExecuteCallback] = {}
+ self.queued_connection_tests: dict[ConnectionTestKey,
workloads.TestConnection] = {}
Review Comment:
@ashb this #63491 exactly has this refactor. Would really appreciate a look
when you get a chance, thank you!
##########
airflow-core/src/airflow/executors/base_executor.py:
##########
@@ -216,6 +218,7 @@ def __init__(self, parallelism: int = PARALLELISM,
team_name: str | None = None)
self.team_name: str | None = team_name
self.queued_tasks: dict[TaskInstanceKey, workloads.ExecuteTask] = {}
self.queued_callbacks: dict[str, workloads.ExecuteCallback] = {}
+ self.queued_connection_tests: dict[ConnectionTestKey,
workloads.TestConnection] = {}
Review Comment:
@ashb this #63491 pr exactly has this refactor. Would really appreciate a
look when you get a chance, thank you!
--
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]